Skip to content

Instantly share code, notes, and snippets.

@siscia
Last active August 29, 2015 13:56
Show Gist options
  • Save siscia/9160923 to your computer and use it in GitHub Desktop.
Save siscia/9160923 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route("/clean-up")
def cleanUp():
"Clean the database from the old users"
cleanDatabase()
@app.route("/bill")
def bill():
"Bill the customers"
billCustumer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment