Connect to an URI in postgres

Question:

I’m guessing this is a pretty basic question, but I can’t figure out why:

import psycopg2
psycopg2.connect("postgresql://postgres:postgres@localhost/postgres")

Is giving the following error:

psycopg2.OperationalError: missing "=" after
"postgresql://postgres:postgres@localhost/postgres" in connection info string

Any idea? According to the docs about connection strings I believe it should work, however it only does like this:

psycopg2.connect("host=localhost user=postgres password=postgres dbname=postgres")

I’m using the latest psycopg2 version on Python2.7.3 on Ubuntu12.04

Asked By: Daan Bakker

||

Answers:

I would use the urlparse module to parse the url and then use the result in the connection method. This way it’s possible to overcome the psycop2 problem.

from urlparse import urlparse # for python 3+ use: from urllib.parse import urlparse
result = urlparse("postgresql://postgres:postgres@localhost/postgres")
username = result.username
password = result.password
database = result.path[1:]
hostname = result.hostname
port = result.port
connection = psycopg2.connect(
    database = database,
    user = username,
    password = password,
    host = hostname,
    port = port
)
Answered By: joamag

The connection string passed to psycopg2.connect is not parsed by psycopg2: it is passed verbatim to libpq. Support for connection URIs was added in PostgreSQL 9.2.

Answered By: kynan

To update on this, Psycopg3 does actually include a way to parse a database connection URI.

Example:

import psycopg # must be psycopg 3

pg_uri = "postgres://jeff:[email protected]/db"
conn_dict =  psycopg.conninfo.conninfo_to_dict(pg_uri)

with psycopg.connect(**conn_dict) as conn:
  ...

Answered By: mikkelam

Another option is using SQLAlchemy for this. It’s not just ORM, it consists of two distinct components Core and ORM, and it can be used completely without using ORM layer.

SQLAlchemy provides such functionality out of the box by create_engine function. Moreover, via URI you can specify DBAPI driver or many various postgresql settings.

Some examples:

# default
engine = create_engine("postgresql://user:pass@localhost/mydatabase")
# psycopg2
engine = create_engine("postgresql+psycopg2://user:pass@localhost/mydatabase")
# pg8000
engine = create_engine("postgresql+pg8000://user:pass@localhost/mydatabase")
# psycopg3 (available only in SQLAlchemy 2.0, which is currently in beta)
engine = create_engine("postgresql+psycopg://user:pass@localhost/test")

And here is a fully working example:

import sqlalchemy as sa

# set connection URI here ↓
engine = sa.create_engine("postgresql://user:password@db_host/db_name")
ddl_script = sa.DDL("""
    CREATE TABLE IF NOT EXISTS demo_table (
        id serial PRIMARY KEY,
        data TEXT NOT NULL
    );
""")

with engine.begin() as conn:
    # do DDL and insert data in a transaction
    conn.execute(ddl_script)
    conn.exec_driver_sql("INSERT INTO demo_table (data) VALUES (%s)",
                         [("test1",), ("test2",)])

    conn.execute(sa.text("INSERT INTO demo_table (data) VALUES (:data)"),
                 [{"data": "test3"}, {"data": "test4"}])

with engine.connect() as conn:
    cur = conn.exec_driver_sql("SELECT * FROM demo_table LIMIT 2")
    for name in cur.fetchall():
        print(name)

# you also can obtain raw DBAPI connection
rconn = engine.raw_connection()

SQLAlchemy provides many other benefits:

  • You can easily switch DBAPI implementations just by changing URI (psycopg2, psycopg2cffi, etc), or maybe even databases.
  • It implements connection pooling out of the box (both psycopg2 and psycopg3 has connection pooling, but API is different)
  • asyncio support via create_async_engine (psycopg3 also supports asyncio).
Answered By: Slava Bacherikov
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.