Skip to main content

Postgress integration with asyncio.

Project description

aiopg is a library for accessing a PostgreSQL database from the asyncio (PEP-3156/tulip) framework. It wraps asynchronous features of the Psycopg database driver.

Example

import asyncio
from aiopg.pool import create_pool

dsn = 'dbname=jetty user=nick password=1234 host=localhost port=5432'


@asyncio.coroutine
def test_select():
    pool = yield from create_pool(dsn)

    with (yield from pool) as conn:
        cur = yield from conn.cursor()
        yield from cur.execute('SELECT 1')
        ret = yield from cur.fetchone()
        assert ret == (1,), ret


asyncio.get_event_loop().run_until_complete(test_select())

Example of SQLAlchemy optional integration

import asyncio
from aiopg.sa import create_engine
import sqlalchemy as sa


metadata = sa.MetaData()

tbl = sa.Table('tbl', metadata,
sa.Column('id', sa.Integer, primary_key=True),
sa.Column('val', sa.String(255)))


@asyncio.coroutine
def go():
    engine = yield from create_engine(user='aiopg',
                                      database='aiopg',
                                      host='127.0.0.1',
                                      password='passwd')

    with (yield from engine) as conn:
        yield from conn.execute(tbl.insert().values(val='abc'))

        res = yield from conn.execute(tbl.select())
        for row in res:
            print(row.id, row.val)


asyncio.get_event_loop().run_until_complete(go())

CHANGES

0.2.2 (2014-06-07)

  • Fix bug with passing parameters into SAConnection.execute when executing raw SQL expression.

0.2.1 (2014-05-08)

  • Close connection with invalid transaction status on returning to pool.

0.2.0 (2014-05-04)

  • Implemented optional support for sqlalchemy functional sql layer.

0.1.0 (2014-04-06)

  • Implemented plain connections: connect, Connection, Cursor

  • Implemented database pools: create_pool and Pool

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiopg-0.2.3.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiopg-0.2.3-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

Details for the file aiopg-0.2.3.tar.gz.

File metadata

  • Download URL: aiopg-0.2.3.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for aiopg-0.2.3.tar.gz
Algorithm Hash digest
SHA256 d5e6cbb7fe115cef13c9d60185816a208655c0f11187c0f4b8d898544919b5f5
MD5 e47797849a3efe337825f042668b96b4
BLAKE2b-256 bf8968c38170c56940cfd7619dd0b4d8e21130a8dde1403d65cf9007e2264911

See more details on using hashes here.

File details

Details for the file aiopg-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for aiopg-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 221b6ea3070134b1c617d15600dc078e4b3be84faaf3257ff664c8d56882c303
MD5 75b8b6df166df525df3129fdbd1a2f47
BLAKE2b-256 766dcf52eb0d8202e5844f032241c7006a93c995ba941015b8633777fce33330

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page