requirements

This commit is contained in:
Kenneth Reitz
2013-04-06 20:59:31 -04:00
parent 3d481687fb
commit ddec9c4126
2 changed files with 12 additions and 1 deletions
+6 -1
View File
@@ -10,9 +10,14 @@ def hello_world():
return 'Hello World!'
def get_collection_view():
pass
@app.route('/content/<uuid>')
def get_content(uuid):
pass
# Grab the content from elephant.
# Return it with appropriate content-type
# Flask-Negotations
# TODO: .rss?
@app.route('/<collection>.atom')
+6
View File
@@ -0,0 +1,6 @@
Flask==0.9
Jinja2==2.6
Werkzeug==0.8.3
distribute==0.6.31
requests==1.2.0
wsgiref==0.1.2