This file is indexed.

/usr/lib/python3/dist-packages/py_postgresql-1.1.0.egg-info is in python3-postgresql 1.1.0-2build2.

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
Metadata-Version: 1.1
Name: py-postgresql
Version: 1.1.0
Summary: PostgreSQL driver and tools library.
Home-page: http://python.projects.postgresql.org/
Author: James William Pye
Author-email: python-general@pgfoundry.org
License: UNKNOWN
Description: 
        py-postgresql is a set of Python modules providing interfaces to various parts
        of PostgreSQL. Notably, it provides a pure-Python driver + C optimizations for
        querying a PostgreSQL database.
        
        http://python.projects.postgresql.org
        
        Features:
        
         * Prepared Statement driven interfaces.
         * Cluster tools for creating and controlling a cluster.
         * Support for most PostgreSQL types: composites, arrays, numeric, lots more.
         * COPY support.
        
        Sample PG-API Code::
        
        	>>> import postgresql
        	>>> db = postgresql.open('pq://user:password@host:port/database')
        	>>> db.execute("CREATE TABLE emp (emp_first_name text, emp_last_name text, emp_salary numeric)")
        	>>> make_emp = db.prepare("INSERT INTO emp VALUES ($1, $2, $3)")
        	>>> make_emp("John", "Doe", "75,322")
        	>>> with db.xact():
        	...  make_emp("Jane", "Doe", "75,322")
        	...  make_emp("Edward", "Johnson", "82,744")
        	...
        
        There is a DB-API 2.0 module as well::
        
        	postgresql.driver.dbapi20
        
        However, PG-API is recommended as it provides greater utility.
        
        Once installed, try out the ``pg_python`` console script::
        
        	$ python3 -m postgresql.bin.pg_python -h localhost -p port -U theuser -d database_name
        
        If a successful connection is made to the remote host, it will provide a Python
        console with the database connection bound to the `db` name.
        
        
        History
        -------
        
        py-postgresql is not yet another PostgreSQL driver, it's been in development for
        years. py-postgresql is the Python 3 port of the ``pg_proboscis`` driver and
        integration of the other ``pg/python`` projects.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Attribution Assurance License
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database