This file is indexed.

/usr/lib/python2.7/dist-packages/xhtml2pdf-0.2.1.egg-info/PKG-INFO is in python-xhtml2pdf 0.2.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
Metadata-Version: 1.1
Name: xhtml2pdf
Version: 0.2.1
Summary: PDF generator using HTML and CSS
Home-page: http://github.com/xhtml2pdf/xhtml2pdf
Author: Luis Zarate
Author-email: luisza14@gmail.com
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Description: XHTML2PDF
        =========
        
        
        .. image:: https://travis-ci.org/xhtml2pdf/xhtml2pdf.svg
            :target: https://travis-ci.org/xhtml2pdf/xhtml2pdf
        
        .. image:: https://ci.appveyor.com/api/projects/status/y2mj843lpptwars9/branch/master?svg=true
            :target: https://ci.appveyor.com/project/LegoStormtroopr/xhtml2pdf/branch/master
        
        .. image:: https://coveralls.io/repos/xhtml2pdf/xhtml2pdf/badge.svg?branch=develop&service=github
                :target: https://coveralls.io/github/xhtml2pdf/xhtml2pdf?branch=develop
                :alt: Coveralls
        
        .. image:: https://badge.fury.io/py/xhtml2pdf.svg
           :target: https://pypi.python.org/pypi/xhtml2pdf
        
        .. image:: https://readthedocs.org/projects/xhtml2pdf/badge/?version=latest
           :target: http://xhtml2pdf.readthedocs.io/en/latest/?badge=latest
           :alt: Documentation Status
        
        The current release of xhtml2pdf is xhtml2pdf **0.2.1** which is the first stable
        version that has Python 3 support. 
        As with all open-source software, its use in production depends
        on many factors, so be aware that you may find issues in some cases.
        **Big thanks** to everyone
        who has worked on this project so far and to those who help maintain it.
        
        --------------------------------------------------------------------------------
        
        What else can you use instead?
        ==============================
        
        Go use WeasyPrint, the codebase is pretty, it has a different features, and it
        does a lot of what xhtml2pdf does and it is easier to use in many circumstances.
        
        `WeasyPrint <http://weasyprint.org/>`__
        
        
        Documentation?
        ==============
        
        xhtml2pdf has some documentation, and we could use your help improving it.
        A good place to start is ``doc/usage.rst``.
        
        Or also see in `Readthedocs <http://xhtml2pdf.readthedocs.io//>`__
        
        --------------------------------------------------------------------------------
        --------------------------------------------------------------------------------
        
        
        This project is community-led! To strengthen it, please hang out on IRC #xhtml2pdf (Freenode)
        or join `our maling list <http://groups.google.com/group/xhtml2pdf>`__.
        
        
        Call for testing
        ================
        
        This project is heavily dependent on getting its test coverage up!
        Currently, Python 3 support is being worked on and many refactors and suggestions are potentially coming in.
        Furthermore, parts of the codebase could do well with cleanups and refactoring.
        
        If you benefit from xhtml2pdf, perhaps `look at the test coverage <https://coveralls.io/github/xhtml2pdf/xhtml2pdf?branch=master>`__ and identify parts that are yet untouched.
        
        
        About
        =====
        
        ``xhtml2pdf`` is a html2pdf converter using the ReportLab Toolkit,
        the HTML5lib and pyPdf. It supports HTML 5 and CSS 2.1 (and some of CSS 3).
        It is completely written in pure Python so it is platform independent.
        
        The main benefit of this tool that a user with Web skills like HTML and CSS
        is able to generate PDF templates very quickly without learning new
        technologies.
        
        
        Installation
        ============
        
        This is a typical Python library and is installed using pip::
        
            pip install xhtml2pdf
        
        
        Requirements
        ============
        
        Python 2.7+. Only Python 3.4+ is tested and guaranteed to work.
        
        All additional requirements are listed in ``requirements.txt`` file and are
        installed automatically using the ``pip install xhtml2pdf`` method.
        
        
        Development environment
        =======================
        
        #. If you don't have it, install ``pip``, the python package installer::
        
            sudo easy_install pip
        
           For more information about ``pip`` refer to http://www.pip-installer.org/.
        
        #. I will recommend using ``virtualenv`` for development. This is great to have separate environment for
           each project, keeping the dependencies for multiple projects separated::
        
            sudo pip install virtualenv
        
           For more information about ``virtualenv`` refer to http://www.virtualenv.org/
        
        #. Create virtualenv for the project. This can be inside the project directory, but cannot be under
           version control::
        
            virtualenv --distribute xhtml2pdfenv --python=python2
        
        #. Activate your virtualenv::
        
            source xhtml2pdfenv/bin/activate
        
           Later to deactivate use::
        
            deactivate
        
        #. Next step will be to install/upgrade dependencies from ``requirements.txt`` file::
        
            pip install -r requirements.txt
        
        #. Run tests to check your configuration::
        
            nosetests --with-coverage
        
           You should have a log with success status::
        
            Ran 36 tests in 0.322s
        
            OK
        
        
        Python integration
        ==================
        
        Some simple demos of how to integrate xhtml2pdf into
        a Python program may be found here: test/simple.py
        
        
        Running tests
        =============
        
        Two different test suites are available to assert xhtml2pdf works reliably:
        
        #. Unit tests. The unit testing framework is currently minimal, but is being
           improved on a daily basis (contributions welcome). They should run in the
           expected way for Python's unittest module, i.e.::
        
                nosetests --with-coverage (or your personal favorite)
        
        #. Functional tests. Thanks to mawe42's super cool work, a full functional
           test suite lives in testrender/.
        
        
        Contact
        =======
        
        * IRC: #xhtml2pdf on freenode
        * Mailing list: xhtml2pdf@googlegroups.com
        * Google group: http://groups.google.com/group/xhtml2pdf
        
        
        History
        =======
        
        This are the major milestones and the maintainers of the project:
        
        * 2000-2007, commercial project, spirito.de, written by Dirk Holtwich
        * 2007-2010 Dirk Holtwich (project named "Pisa", project released as GPL)
        * 2010-2012 Dirk Holtwick (project named "xhtml2pdf", changed license to Apache)
        * 2012-2015 Chris Glass (@chrisglass)
        * 2015-2016 Benjamin Bach (@benjaoming)
        * 2016-2018 Sam Spencer (@LegoStormtroopr)
        * 2018-Current Luis Zarate (@luisza) 
        
        For more history, see the CHANGELOG.
        
        License
        =======
        
        Copyright 2010 Dirk Holtwick, holtwick.it
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
        
Keywords: PDF,HTML,XHTML,XML,CSS
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Documentation
Classifier: Topic :: Multimedia
Classifier: Topic :: Office/Business
Classifier: Topic :: Printing
Classifier: Topic :: Text Processing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Fonts
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Indexing
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Topic :: Utilities