frankier / flask-zodb

Use the ZODB with Flask

Home Page:http://pypi.python.org/pypi/Flask-ZODB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flask-ZODB

Flask-ZODB

Simple extension for integrating the ZODB in Flask applications.

app = Flask(__name__)
db = ZODB(app)

@app.before_request
def set_db_defaults():
    if 'entries' not in db:
        db['entries'] = List()

@app.route('/')
def show_entries():
    return render_template('show_entries.html', entries=db['entries'])


@app.route('/add', methods=['POST'])
def add_entry():
    db['entries'].append(request.form)
    flash('New entry was successfully posted')
    return redirect(url_for('show_entries'))

For more information see the documentation.

About

Use the ZODB with Flask

http://pypi.python.org/pypi/Flask-ZODB

License:BSD 2-Clause "Simplified" License