Files
httpbin/manage.py
T
2011-06-12 18:14:05 -04:00

20 lines
302 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from flask import Flask
from flaskext.script import Manager, Command
app = Flask(__name__)
# configure your app
manager = Manager(app)
@manager.command
def hello():
"""Hello World!"""
print r'\o/'
if __name__ == "__main__":
manager.run()