Skip to main content

Async support for Peewee ORM

Project description

Peewee-AIO

Async support for Peewee ORM

Tests Status PYPI Version Python Versions

Features

Requirements

  • python >= 3.8

Installation

peewee-aio should be installed using pip:

$ pip install peewee-aio

You can install optional database drivers with:

$ pip install peewee-aio[aiosqlite]   # for SQLite (asyncio)
$ pip install peewee-aio[aiomysql]    # for MySQL (asyncio)
$ pip install peewee-aio[aiopg]       # for Postgresql (asyncio)
$ pip install peewee-aio[asyncpg]     # for Postgresql (asyncio)
$ pip install peewee-aio[trio_mysql]  # for MySQL (trio)
$ pip install peewee-aio[triopg]      # for PostgresQL (trio)

Quickstart

    import peewee
    from peewee_aio import Manager, AIOModel, fields

    manager = Manager('aiosqlite:///:memory:')

    @manager.register
    class Role(AIOModel):
        # Pay attention that we are using fields from Peewee-AIO for better typing support
        id = fields.AutoField()
        name = fields.CharField()

    @manager.register
    class User(AIOModel):

        # Pay attention that we are using fields from Peewee-AIO for better typing support
        id = fields.AutoField()
        name = fields.CharField()
        role = fields.ForeignKeyField(Role)

    async def handler():

        # Initialize the database's pool (optional)
        async with manager:

            # Acquire a connection
            async with manager.connection():

                # Create the tables in database
                await Role.create_table()
                await User.create_table()

                # Create a record
                role = await Role.create(name='user')
                assert role
                assert role.id  # role.id contains correct string type
                user = await User.create(name="Andrey", role=role)
                assert user
                assert user.id
                role = await user.role  # Load role from DB using the foreign key
                assert role  # role has a correct Role Type

                # Iterate through records
                async for user in User.select(User, Role).join(Role):
                    assert user  # user has a corrent User Type
                    assert user.id
                    role = await user.role  # No DB query here, because the fk is preloaded

                # Change records
                user.name = "Dmitry"
                await user.save()

                # Update records
                await User.update({"name": "Anonimous"}).where(User.id == user.id)

                # Delete records
                await User.delete().where(User.id == user.id)

                # Drop the tables in database
                await User.drop_table()
                await Role.drop_table()

    # Run the handler with your async library
    import asyncio

    asyncio.run(handler())

Usage

TODO

Sync usage

The library still supports sync mode (use manager.allow_sync):

class Test(peewee.Model):
  data = peewee.CharField()

with manager.allow_sync():
  Test.create_table()
  Test.create(data='test')
  assert Test.select().count()
  Test.update(data='new-test').execute()

Get prefetched relations

TODO

# We prefetched roles here
async for user in User.select(User, Role).join(Role):
  role = user.fetch(User.role)  # get role from user relations cache

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/peewee-aio/issues

Contributing

Development of the project happens at: https://github.com/klen/peewee-aio

License

Licensed under a MIT License

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

peewee_aio-1.5.1.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

peewee_aio-1.5.1-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file peewee_aio-1.5.1.tar.gz.

File metadata

  • Download URL: peewee_aio-1.5.1.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure

File hashes

Hashes for peewee_aio-1.5.1.tar.gz
Algorithm Hash digest
SHA256 91777eb1fc73187503d97ae4c25415e4db7df3a6590fc585568b4354baf22940
MD5 7d887db5e548899caba6e50e08ece5e2
BLAKE2b-256 01098231097d7a0ad9b101bbbd54d3865d96765c8d0a3cf42a53ff4f60e71bd0

See more details on using hashes here.

File details

Details for the file peewee_aio-1.5.1-py3-none-any.whl.

File metadata

  • Download URL: peewee_aio-1.5.1-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure

File hashes

Hashes for peewee_aio-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0601af0e872204990c3fae8d85da1131eae4dcd27e2a61371ac4a48f00b93bce
MD5 a8b1e004ca4f4ff7fcc1caf1011cc0cd
BLAKE2b-256 3d90218bf0d1fd5b3e1a8932f9bbee20b326d46f8d767d4db5da1cfc94bf9129

See more details on using hashes here.

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