This file is indexed.

/usr/lib/python3/dist-packages/klein-17.2.0.egg-info/PKG-INFO is in python3-klein 17.2.0-2.

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
Metadata-Version: 1.1
Name: klein
Version: 17.2.0
Summary: werkzeug + twisted.web
Home-page: https://github.com/twisted/klein
Author: Amber Brown (HawkOwl)
Author-email: hawkowl@twistedmatrix.com
License: MIT
Description-Content-Type: UNKNOWN
Description: ============================
        Klein, a Web Micro-Framework
        ============================
        
        .. image:: https://travis-ci.org/twisted/klein.svg?branch=master
            :target: http://travis-ci.org/twisted/klein
            :alt: Build Status
        .. image:: https://codecov.io/github/twisted/klein/coverage.svg?branch=master
            :target: https://codecov.io/github/twisted/klein?branch=master
            :alt: Code Coverage
        .. image:: https://img.shields.io/pypi/pyversions/klein.svg
            :target: https://pypi.python.org/pypi/klein
            :alt: Python Version Compatibility
        
        Klein is a micro-framework for developing production-ready web services with Python.
        It is 'micro' in that it has an incredibly small API similar to `Bottle <http://bottlepy.org/docs/dev/index.html>`_ and `Flask <http://flask.pocoo.org/>`_.
        It is not 'micro' in that it depends on things outside the standard library.
        This is primarily because it is built on widely used and well tested components like `Werkzeug <http://werkzeug.pocoo.org/>`_ and `Twisted <http://twistedmatrix.com>`_.
        
        A `Klein bottle <https://en.wikipedia.org/wiki/Klein_bottle>`_ is an example of a non-orientable surface, and a glass Klein bottle looks like a twisted bottle or twisted flask.
        This, of course, made it too good of a pun to pass up.
        
        Klein's documentation can be found at `Read The Docs <http://klein.readthedocs.org>`_.
        
        
        Example
        =======
        
        This is a sample Klein application that returns 'Hello, world!', running on port ``8080``.
        
        .. code-block:: python
        
            from klein import run, route
        
            @route('/')
            def home(request):
                return 'Hello, world!'
        
            run("localhost", 8080)
        
        
        Contribute
        ==========
        
        ``klein`` is hosted on `GitHub <http://github.com/twisted/klein>`_ and is an open source project that welcomes contributions of all kinds from the community, including:
        
        - code patches,
        - `documentation <http://klein.readthedocs.org/>`_ improvements,
        - `bug reports <https://github.com/twisted/klein/issues>`_,
        - reviews for `contributed patches <https://github.com/twisted/klein/pulls>`_.
        
        For more information about contributing, see `the contributor guidelines <https://github.com/twisted/klein/tree/master/CONTRIBUTING.rst>`_.
        
Keywords: twisted flask werkzeug web
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules