Skip to content

franklx/quart-sqlalchemy

 
 

Quart-SQLAlchemy

WARNING

  • This extension is work-in-progress and is for internal use (for now).
  • It works with raw queries and is tested only on asyncpg.
  • Base class implements convenience method inspired by encode/databases.
  • Documentation and tests TODO.

---

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.

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)
    email = db.Column(db.String, unique=True, nullable=False)


db.session.add(User(username="Quart", email="[email protected]"))
db.session.commit()

users = User.query.all()

Contributing

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

Donate

The Pallets organization develops and supports Quart-SQLAlchemy and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.

Links

About

Adds SQLAlchemy support to Flask

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%