Skip to main content

Peewee-AIO integration for Muffin framework

Project description

muffin-peewee-aioPeewee ORM integration to Muffin framework.

Tests Status PYPI Version Python Versions

Requirements

  • python >= 3.8

Installation

Muffin Peewee should be installed using pip:

$ pip install muffin-peewee-aio

You can install optional database drivers with:

$ pip install muffin-peewee-aio[aiosqlite]
$ pip install muffin-peewee-aio[aiopg]
$ pip install muffin-peewee-aio[asyncpg]
$ pip install muffin-peewee-aio[aiomysql]

Usage

from muffin import Application
from muffin_peewee import Plugin as Peewee

# Create Muffin Application
app = Application('example')

# Initialize the plugin
# As alternative: db = Peewee(app, **options)
db = Peewee()
db.setup(app, PEEWEE_CONNECTION='postgresql://postgres:postgres@localhost:5432/database')

Options

Name

Default value

Desctiption

CONNECTION

sqlite:///db.sqlite

Database URL

CONNECTION_PARAMS

{}

Additional params for DB connection

AUTO_CONNECTION

True

Automatically get a connection from db for a request

AUTO_TRANSACTION

True

Automatically wrap a request into a transaction

MIGRATIONS_ENABLED

True

Enable migrations with

MIGRATIONS_PATH

"migrations"

Set path to the migrations folder

PYTEST_SETUP_DB

True

Manage DB schema and connection in pytest

You are able to provide the options when you are initiliazing the plugin:

db.setup(app, connection='DB_URL')

Or setup it inside Muffin.Application config using the PEEWEE_ prefix:

PEEWEE_CONNECTION = 'DB_URL'

Muffin.Application configuration options are case insensitive

Queries

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


@app.route('/')
async def view(request):
    return [t.data async for t in Test.select()]

Manage connections

# Set configuration option `MANAGE_CONNECTIONS` to False

# Use context manager
@app.route('/')
async def view(request):
    # Aquire a connection
    async with db.manager.connection():
        # Work with db
        # ...

Migrations

Create migrations:

$ muffin example:app peewee-create [NAME] [--auto]

Run migrations:

$ muffin example:app peewee-migrate [NAME] [--fake]

Rollback migrations:

$ muffin example:app peewee-rollback [NAME]

List migrations:

$ muffin example:app peewee-list

Clear migrations from DB:

$ muffin example:app peewee-clear

Merge migrations:

$ muffin example:app peewee-merge

Bug tracker

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

Contributing

Development of Muffin Peewee happens at: https://github.com/klen/muffin-peewee-aio

Contributors

  • klen (Kirill Klenov)

License

Licensed under a MIT license.

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

muffin_peewee_aio-0.15.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

muffin_peewee_aio-0.15.0-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file muffin_peewee_aio-0.15.0.tar.gz.

File metadata

  • Download URL: muffin_peewee_aio-0.15.0.tar.gz
  • Upload date:
  • Size: 6.5 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 muffin_peewee_aio-0.15.0.tar.gz
Algorithm Hash digest
SHA256 1a569c9e4b18294f7671bc0ea7a51e48bdf6cc89983d082477a60c75c4abf160
MD5 83e40a3fda3a5f5134d67b6fd2c176c7
BLAKE2b-256 b14f909d7c3f1f656bff0a382a0eda5d615a58538b0341d519c4e4aaaa899bfc

See more details on using hashes here.

File details

Details for the file muffin_peewee_aio-0.15.0-py3-none-any.whl.

File metadata

  • Download URL: muffin_peewee_aio-0.15.0-py3-none-any.whl
  • Upload date:
  • Size: 7.0 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 muffin_peewee_aio-0.15.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0904b92171a5781fb426ee7cd6a558b8b5169087da8489d93aaa59ebc5683349
MD5 74b7df1e93cfcea5ab6a2e8815cf2e8a
BLAKE2b-256 174e0274bb4bf399496141a63ec22ce7fd4bec0a45f356752c850e26f1f5b425

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