<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>pg_proboscis</name>
<shortdesc>pg_pqueue based GreenTrunk and DB-API 2.0 implementation for PostgreSQL</shortdesc>
<description>pg_proboscis
============

pg_proboscis is a pg_pqueue based driver for PostgreSQL. It provides a GreenTrunk and
a DB-API 2.0 interface to PostgreSQL databases.


contents
--------

* postgresql.interface.proboscis.tracenull
* postgresql.interface.proboscis.greentrunk
* postgresql.interface.proboscis.dbapi2
* postgresql.interface.proboscis.python
* pb_python (script implying -m postgresql.interface.proboscis.python)


examples
--------

Run a console with a connection::

 $ pb_python -h localhost -U pgsql -d postgres
 Python 2.5.1 (r251:54863, Dec  8 2007, 09:22:18) 
 [GCC 4.0.1 (Apple Inc. build 5465)] on darwin
 Type "help", "copyright", "credits" or "license" for more information.
 (SavingConsole)
 &gt;&gt;&gt; GTX
 &lt;postgresql.interface.proboscis.tracenull.GreenTrunk_Connection[pq://pgsql@localhost:5432/postgres] T.0&gt;
 &gt;&gt;&gt;

Make a GreenTrunk connection manually::

 &gt;&gt;&gt; import postgresql.interface.proboscis.greentrunk as gt
 &gt;&gt;&gt; con = gt.Connector(user = 'pgsql', host = 'localhost', port = 5432, database = 'postgres')
 &gt;&gt;&gt; c=con()

Make a DB-API 2.0 connection manually::

 &gt;&gt;&gt; import postgresql.interface.proboscis.dbapi2 as db
 &gt;&gt;&gt; c=db.connect(user = 'pgsql', host = 'localhost', port = 5432, database = 'postgres')

Notably, DSN strings are *not* supported. However, if you want connection
strings, the ``postgresql.utility.client.iri`` module has means for parsing PQ
IRIs.</description>
<download-page>http://python.projects.postgresql.org/downloads</download-page>
<homepage rdf:resource="http://python.projects.postgresql.org" />
<maintainer><foaf:Person><foaf:name>pg/python project</foaf:name>
<foaf:mbox_sha1sum>2752b5aa3547dcfccca40f7174b49b9d0259deae</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.9.4</revision></Version></release>
</Project></rdf:RDF>