Skip to main content

Peewee integration for Muffin framework

Project description

muffin-peewee-aioPeewee ORM integration to Muffin framework.

Tests Status PYPI Version Python Versions

Requirements

  • python >= 3.7

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[sqlite]
$ pip install muffin-peewee-aio[postgresql]
$ pip install muffin-peewee-aio[mysql]

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

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 pw_create [NAME] [--auto]

Run migrations:

$ muffin example:app pw_migrate [NAME] [--fake]

Rollback migrations:

$ muffin example:app pw_rollback [NAME]

List migrations:

$ muffin example:app pw_list

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.0.7.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

muffin_peewee_aio-0.0.7-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file muffin-peewee-aio-0.0.7.tar.gz.

File metadata

  • Download URL: muffin-peewee-aio-0.0.7.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for muffin-peewee-aio-0.0.7.tar.gz
Algorithm Hash digest
SHA256 1c9edec0a5bc9dd86a09109081d37177ff471c020516ca765259738a6a89d627
MD5 3daa8762a17a36ebfb5b24561175d2dd
BLAKE2b-256 8d596163c9bd3a63e5905043317ad2adb08c1845be6f604df7c75a4e6d904b1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: muffin_peewee_aio-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for muffin_peewee_aio-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 104d02c70bc344246643685b4c17ca709eab4b028b259ecbcd09bbc284c239c0
MD5 bf89308dd36a9c4be9c96efc3f94941e
BLAKE2b-256 314b030c4adbeabc484ab64a90b212132209d170aab40461fee7cdd7f814ef3b

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