Skip to main content

A Quart port of Flask SQLAlchemy.

Project description

Quart-SQLAlchemy is an extension for Quart that adds support for SQLAlchemy to your application. It aims to simplify using SQLAlchemy with Quart by providing useful defaults and extra helpers that make it easier to accomplish common tasks.

This work is based on the excellent Flask extension [FlaskSQLAlchemy](https://github.com/pallets-eco/flask-sqlalchemy/tree/main/examples) and is essentialy a port of that to Quart.

Installing

Install and update using pip:

$ pip install -U quart-sqlalchemy

A Simple Example

from quart import Quart
from quart_sqlalchemy import SQLAlchemy

app = Quart(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///example.sqlite"
db = SQLAlchemy(app)

class User(db.Model)
    id = db.Column(db.Integer, primary_key=True)
    username = db.Column(db.String, unique=True, nullable=False)

with app.app_context():
    db.create_all()

    db.session.add(User(username="example"))
    db.session.commit()

    users = db.session.execute(db.select(User)).scalars()

Contributing

For guidance on setting up a development environment and how to make a contribution to Quart-SQLAlchemy, see the contributing guidelines.

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

quart-sqlalchemy-1.4.46.tar.gz (54.2 MB view hashes)

Uploaded Source

Built Distribution

quart_sqlalchemy-1.4.46-py3-none-any.whl (22.7 kB view hashes)

Uploaded Python 3

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