Skip to main content

A set of generic class-based views for flask

Project description

Flask-Generic-Views is a set of generic class-based views for the Flask microframework inspired by the ones in Django.

from flask import Flask
from flask.ext.generic_views import TemplateView

app = Flask(__name__)

index_view = TemplateView.as_view('index', template_file='index.html')

app.add_url_rule('/', index_view)

if __name__ == '__main__':
    app.run()

Database Support

Currently Flask-Generic-Views supports use of Models created with SQLAlchemy.

Installation

To install the basic views:

$ pip install flask-generic-views

To install optional SQLAlchemy support:

$ pip install flask-generic-views[sqlalchemy]

To install all optional packages:

$ pip install flask-generic-views[all]

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-Generic-Views-0.1.1.tar.gz (12.4 kB view hashes)

Uploaded Source

Built Distribution

Flask_Generic_Views-0.1.1-py2.py3-none-any.whl (15.4 kB view hashes)

Uploaded Python 2 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