Skip to main content

SQLAlchemy 1.4 / 2.0 support for aiohttp.

Project description

Python version support Release PyPI downloads count MIT License Read The Docs build GitHub continuous integration codecov.io status for master branch Codacy

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 different types of request handlers;

  • support nested applications.

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 datetime import datetime

import sqlalchemy as sa
from aiohttp import web
from sqlalchemy import orm

import aiohttp_sqlalchemy
from aiohttp_sqlalchemy import sa_session

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.begin():
        db_session.add(MyModel())
        result = await db_session.execute(sa.select(MyModel))
        result = result.scalars()

    data = {
        instance.pk: instance.timestamp.isoformat()
        for instance in result
    }
    return web.json_response(data)


async def app_factory():
    app = web.Application()

    bind = aiohttp_sqlalchemy.bind("sqlite+aiosqlite:///")
    aiohttp_sqlalchemy.setup(app, [bind])
    await aiohttp_sqlalchemy.init_db(app, metadata)

    app.add_routes([web.get("/", main)])

    return app


if __name__ == "__main__":
    web.run_app(app_factory())

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.17.3.tar.gz (7.9 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.17.3-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: aiohttp-sqlalchemy-0.17.3.tar.gz
  • Upload date:
  • Size: 7.9 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.17.3.tar.gz
Algorithm Hash digest
SHA256 d2f23c3c8414d1b7f910f79c9d6fa22ccb5079573a9409230e059f0f7c35aee3
MD5 ae4008b876b8e3392fc0f5ab422db971
BLAKE2b-256 81b2c5387c2af9237f30a0d3302bc57018b51f6c36f9414a5159e2257bcb7a9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp_sqlalchemy-0.17.3-py3-none-any.whl
  • Upload date:
  • Size: 8.3 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.17.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2797bf23de489fa1926f69f658fa5d0a0d952f326f7e8c29b6e1a2de1e1f3547
MD5 59fea11e0547c549638ee1be1d8d7f91
BLAKE2b-256 16151b3436ef7ba64ea254755b5da4de7e2449e4cd43274676d1950c395994eb

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