Psycopg
From PostgreSQL wiki
(Redirected from Psycopg2)
Psycopg is a PostgreSQL database adapter for the Python programming language. It conforms to DB-API 2.0 standard.
It is currently at version 2.x, which is a complete rewrite of the original 1.x code to provide new-style classes for connection and cursor objects and other sweet candies. Like the psycopg1, psycopg2 was written with the aim of being very small and fast, and stable as a rock.
Psycopg is designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or UPDATEs.
Version 2.2 introduces async support and is compatible with coroutine libraries, allowing its use with nonblocking I/O libraries such as Eventlet, gevent, uGreen.
Links
- Homepage
- Documentation
- Download area
- Recent changes
- FAQ (An older faq is also available)
- gitweb
- Examples: Using psycopg2 with PostgreSQL
Mailing Lists
Getting GIT repo
git clone git://luna.dndg.it/public/psycopg2.git
