Skip to main content

SQLAlchemy 1.4 / 2.0 support for aiohttp.

Project description

Release Python versions Downloads count Build status Test coverage Documentation

SQLAlchemy 1.4 / 2.0 support for aiohttp.

The library provides the next features:

  • initializing asynchronous sessions through a middlewares;

  • initializing asynchronous sessions through a decorators;

  • simple access to one asynchronous session by default key;

  • preventing attributes from being expired after commit by default;

  • support for different types of request handlers.

Documentation

https://aiohttp-sqlalchemy.readthedocs.io

Installation

pip install aiohttp-sqlalchemy

Simple example

Install aiosqlite for work with sqlite3:

pip install aiosqlite

Copy and paste this code in a file and run:

from aiohttp import web
import aiohttp_sqlalchemy
from aiohttp_sqlalchemy import sa_bind, sa_session
from datetime import datetime
import sqlalchemy as sa
from sqlalchemy import orm


metadata = sa.MetaData()
Base = orm.declarative_base(metadata=metadata)


class MyModel(Base):
    __tablename__ = 'my_table'
    pk = sa.Column(sa.Integer, primary_key=True)
    timestamp = sa.Column(sa.DateTime(), default=datetime.now)


async def main(request):
    db_session = sa_session(request)

    async with db_session.bind.begin() as connection:
        await connection.run_sync(Base.metadata.create_all)

    async with db_session.begin():
        db_session.add_all([MyModel()])
        result = await db_session.execute(sa.select(MyModel))
        items = result.scalars().all()

    data = {}
    for item in items:
        data[item.pk] = item.timestamp.isoformat()

    return web.json_response(data)


app = web.Application()
binding = sa_bind('sqlite+aiosqlite:///')
aiohttp_sqlalchemy.setup(app, [binding])
app.add_routes([web.get('/', main)])

if __name__ == '__main__':
    web.run_app(app)

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

aiohttp-sqlalchemy-0.13.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

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

aiohttp_sqlalchemy-0.13.2-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file aiohttp-sqlalchemy-0.13.2.tar.gz.

File metadata

  • Download URL: aiohttp-sqlalchemy-0.13.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.5 Linux/5.4.0-74-generic

File hashes

Hashes for aiohttp-sqlalchemy-0.13.2.tar.gz
Algorithm Hash digest
SHA256 d9d031959cabf04e2938fd1363269ffa7f2df3801976d9f4337c79c5cc54e34e
MD5 7a0a47c56bb176071bc6b2828d4ad271
BLAKE2b-256 25506957b0b7eefda4374cb89be0424c7b48c8d42a489d088f07a60e9a549967

See more details on using hashes here.

File details

Details for the file aiohttp_sqlalchemy-0.13.2-py3-none-any.whl.

File metadata

  • Download URL: aiohttp_sqlalchemy-0.13.2-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.5 Linux/5.4.0-74-generic

File hashes

Hashes for aiohttp_sqlalchemy-0.13.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2abf8842361e9c81ff90dc54312a99e8fe320234fc461a3b247bfae6f2a69ea5
MD5 c1fa3243ba55bb327e4f1555db6a4f88
BLAKE2b-256 ffb4ffd2fe88ccd92cc871a2c71c33956d22a8595d8388805d24dad313fc4bcb

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