Skip to content

Instantly share code, notes, and snippets.

@katie7r
Last active September 12, 2016 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katie7r/e5c84f82cec38b42debf9bfa50abd1d3 to your computer and use it in GitHub Desktop.
Save katie7r/e5c84f82cec38b42debf9bfa50abd1d3 to your computer and use it in GitHub Desktop.
Flask-Bitmapist - ORM mixin example
from flask_sqlalchemy import SQLAlchemy
from flask_bitmapist import Bitmapistable
db = SQLAlchemy(app) # with `app` as the initialized Flask app
class User(db.Model, Bitmapistable):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment