diff --git a/atom.py b/atom.py index 16f1887..86f4338 100644 --- a/atom.py +++ b/atom.py @@ -10,9 +10,14 @@ def hello_world(): return 'Hello World!' +def get_collection_view(): + pass + @app.route('/content/') def get_content(uuid): - pass + # Grab the content from elephant. + # Return it with appropriate content-type + # Flask-Negotations # TODO: .rss? @app.route('/.atom') diff --git a/requirements.txt b/requirements.txt index e69de29..bdff51d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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