Add SQLAlchemy support to your Flask application.
Project description
Flask-SQLAlchemy is an extension for Flask that adds support for SQLAlchemy to your application. It aims to simplify using SQLAlchemy with Flask by providing useful defaults and extra helpers that make it easier to accomplish common tasks.
Installing
Install and update using pip:
$ pip install -U Flask-SQLAlchemy
A Simple Example
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
app = Flask(__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 Flask-SQLAlchemy, see the contributing guidelines.
Donate
The Pallets organization develops and supports Flask-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
Documentation: https://flask-sqlalchemy.palletsprojects.com/
Changes: https://flask-sqlalchemy.palletsprojects.com/changes/
PyPI Releases: https://pypi.org/project/Flask-SQLAlchemy/
Source Code: https://github.com/pallets-eco/flask-sqlalchemy/
Issue Tracker: https://github.com/pallets-eco/flask-sqlalchemy/issues/
Website: https://palletsprojects.com/
Twitter: https://twitter.com/PalletsTeam
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for Flask_SQLAlchemy-3.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 741dabf0903569a89e4793667e25be5bb9581e614fa0eeb81a395cc7dee40c4b |
|
MD5 | f6c886c85cf8dcd6c98a44f32c581460 |
|
BLAKE2b-256 | 8bf7ee9396c347cdc61d95f20574ae20490d9f474d6255d75a01592ea95f8cbc |