This file is indexed.

/usr/lib/python3/dist-packages/sqlsoup-0.9.1.egg-info/PKG-INFO is in python3-sqlsoup 0.9.1-3.

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
Metadata-Version: 1.1
Name: sqlsoup
Version: 0.9.1
Summary: A one step database access tool, built on the SQLAlchemy ORM.
Home-page: http://bitbucket.org/zzzeek/sqlsoup
Author: Mike Bayer
Author-email: mike@zzzcomputing.com
License: MIT
Description: =======
        SQLSoup
        =======
        
        SQLSoup provides a convenient way to map Python objects
        to relational database tables, with no declarative code
        of any kind.   It's built on top of the
        `SQLAlchemy <http://www.sqlalchemy.org>`_ ORM and provides a
        super-minimalistic interface to an existing database.
        
        Usage is as simple as::
        
            import sqlsoup
            db = sqlsoup.SQLSoup("postgresql://scott:tiger@localhost/test")
        
            for user in db.users.all():
                print "user:", user.name
        
            db.users.filter_by(name="ed").update({"name":"jack"})
            db.commit()
        
        Included for many years as an extension to SQLAlchemy itself, SQLSoup
        has been broken out into it's own project as of 2012.   The community is encouraged
        to collaborate on Bitbucket with patches and features.
        
        Documentation and status of SQLSoup is at http://readthedocs.org/docs/sqlsoup/.
        
Keywords: SQLAlchemy ORM
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Database :: Front-Ends