Skip to main content

User-friendly extensions for asyncpg

Project description

asyncpgx

Build passed Test coverage Version

Extensions for asyncpg.

Based on the asyncpg and highly inspired by the sqlx package

This package supports 3.6+ python versions

Setup

Use pip install asyncpgx

Purpose

This is a thin wrapper on the asyncpg package. Our purpose is to provide convenient extensions to the original package. We're trying to delegate as much work as we can to the asyncpg (basically our extension methods are high-level proxies to the underlying ones) and make only converting job. Original asyncpg API stays the same, you can see it in the asyncpg documentation.

Functionality

  • queries with named parameters, i.e.
import asyncpgx

connection = await asyncpgx.connect('postgresql://127.0.0.1:5432')
await connection.named_fetch('''SELECT field FROM some_table WHERE id <= :id;''', {'id': 1})
  • prepared statements with named parameters, i.e.
import asyncpgx

connection = await asyncpgx.connect('postgresql://127.0.0.1:5432')
prepared_statement = await connection.named_prepare('''SELECT field FROM some_table WHERE id <= :id;''')
await prepared_statement.named_fetch({'id': 1})

Documentation

You can find project documentation here

Changelog

You can find all releases description here

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

asyncpgx-1.5.0.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

asyncpgx-1.5.0-py3-none-any.whl (12.5 kB view hashes)

Uploaded Python 3

Supported by

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