This file is indexed.

/usr/lib/python2.7/dist-packages/Pylons-1.0.2.egg-info/PKG-INFO is in python-pylons 1.0.2-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
Metadata-Version: 1.1
Name: Pylons
Version: 1.0.2
Summary: Pylons Web Framework
Home-page: http://www.pylonshq.com/
Author: Ben Bangert, Philip Jenvey, James Gardner
Author-email: ben@groovie.org, pjenvey@underboss.org
License: BSD
Description: 
        Pylons
        ======
        
        The Pylons web framework is designed for building web applications and
        sites in an easy and concise manner. They can range from as small as a
        single Python module, to a substantial directory layout for larger and
        more complex web applications.
        
        Pylons comes with project templates that help boot-strap a new web
        application project, or you can start from scratch and set things up
        exactly as desired.
        
        
        Example `Hello World`
        ---------------------
        
        ..
        
            from paste.httpserver import serve
            from pylons import Configurator, Response
        
            class Hello(object):
                def __init__(self, request):
                    self.request = request
        
                def index(self):
                    return Response(body="Hello World!")
        
        
            if __name__ == '__main__':
                config = Configurator()
                config.begin()
                config.add_handler('home', '/', handler=Hello, action='index')
                config.end()
                serve(config.make_wsgi_app(), host='0.0.0.0')
        
        
        Core Features
        -------------
        
        * A framework to make writing web applications in Python easy
        
        * Utilizes a minimalist, component-based philosophy that makes it easy to
          expand on
        
        * Harness existing knowledge about Python
        
        * Extensible application design
        
        * Fast and efficient, an incredibly small per-request call-stack providing
          top performance
        
        * Uses existing and well tested Python packages
        
        
        Current Status
        --------------
        
        Pylons 1.0 series is stable and production ready. The Pylons Project now
        maintains the Pyramid web framework for future development. Pylons 1.0 users
        should strongly consider using it for their next project.
        
        
        Download and Installation
        -------------------------
        
        Pylons can be installed with `Easy Install
        <http://peak.telecommunity.com/DevCenter/EasyInstall>`_ by typing::
        
            > easy_install Pylons
        
        Dependant packages are automatically installed from
        the `Pylons download page <http://pylonshq.com/download/>`_ .
        
        
        Development Version
        -------------------
        
        Pylons development uses the Mercuial distributed version control system (DVCS)
        with BitBucket hosting the main repository here:
        
            `Pylons Bitbucket repository <https://github.com/Pylons/pylons>`_
        
        
        
Keywords: web wsgi lightweight framework sqlalchemy formencode mako templates
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: Pylons
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Python Modules