Skip to main content

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.

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

Flask-SQLAlchemy-3.0.1.tar.gz (128.4 kB view details)

Uploaded Source

Built Distribution

Flask_SQLAlchemy-3.0.1-py3-none-any.whl (24.1 kB view details)

Uploaded Python 3

File details

Details for the file Flask-SQLAlchemy-3.0.1.tar.gz.

File metadata

  • Download URL: Flask-SQLAlchemy-3.0.1.tar.gz
  • Upload date:
  • Size: 128.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.1.5 CPython/3.10.7

File hashes

Hashes for Flask-SQLAlchemy-3.0.1.tar.gz
Algorithm Hash digest
SHA256 0a5d586774949856e4f1fe8be3a64c594615959e39e2b041e887bac5c756bc42
MD5 fd23a386d8d0bf96ea5058058073019b
BLAKE2b-256 8fb7f02b765f56f5f45212d58daa0b8af7c3fc58f045ea10a3c7e3b77e8f0b7f

See more details on using hashes here.

File details

Details for the file Flask_SQLAlchemy-3.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for Flask_SQLAlchemy-3.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 649eddf17ae18814f87f33eb26d9d7b37412ec7ee67985873b3cf882aca099f5
MD5 73d3f2404c8071ff81c22fd59f7bd371
BLAKE2b-256 8483b7bc5e3ee7b91790d57438ff955cdd7ada8f50770b6dddbd144ca886f19e

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