Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created October 12, 2012 23:35
Show Gist options
  • Save rdegges/3882273 to your computer and use it in GitHub Desktop.
Save rdegges/3882273 to your computer and use it in GitHub Desktop.
Flask URL Example
"""Flask URL configuration example."""
from myapp import app
@app.route('/create')
def create_account():
pass
@app.route('/delete')
def delete_account():
pass
@app.route('/edit')
def edit_account():
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment