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[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

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

Uploaded Source

Built Distribution

muffin_peewee_aio-0.6.1-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: muffin-peewee-aio-0.6.1.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for muffin-peewee-aio-0.6.1.tar.gz
Algorithm Hash digest
SHA256 dbf95f946d57627bc4fdab7ecd15be8d0ec1481169514db1c108300fed694c77
MD5 066010be7a6cafdb862d6b07808b8d88
BLAKE2b-256 7ee5b76cab213d0ff0333a812ce888bf621964f9f04425c36bb1b5e4d8760d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for muffin_peewee_aio-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a70d03133b7a59b6814b7182da45ac87081219d296937a4c6af344f10a9f57a4
MD5 844e4f0f10e79e1c961e01a68638aad9
BLAKE2b-256 e5d88049451f00dd68a8b83c7e190350704b3a247b2e224c393efe3c50f2c298

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