From 017989ce8bca6e0540701fe0221fcfc556f7aba8 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 18 Oct 2012 18:24:15 -0400 Subject: - move out maxdb - begin consolidating docs for dialects to be more self contained - add a separate section for "external" dialects - not sure how we're going to go with this yet. --- lib/sqlalchemy/dialects/postgresql/pypostgresql.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib/sqlalchemy/dialects/postgresql/pypostgresql.py') diff --git a/lib/sqlalchemy/dialects/postgresql/pypostgresql.py b/lib/sqlalchemy/dialects/postgresql/pypostgresql.py index a1ba9a3bd..cf091b311 100644 --- a/lib/sqlalchemy/dialects/postgresql/pypostgresql.py +++ b/lib/sqlalchemy/dialects/postgresql/pypostgresql.py @@ -6,10 +6,17 @@ """Support for the PostgreSQL database via py-postgresql. +DBAPI +----- + + http://python.projects.pgfoundry.org/ + Connecting ---------- -URLs are of the form ``postgresql+pypostgresql://user:password@host:port/dbname[?key=value&key=value...]``. +Connect string format:: + + postgresql+pypostgresql://user:password@host:port/dbname[?key=value&key=value...] """ -- cgit v1.2.1