Skip to content
This repository has been archived by the owner on Jun 4, 2018. It is now read-only.

fohlin/movie_groove

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Movie Groove

Movie Groove is an example mashup app, written in Python using Flask. It shows the main concepts of routing, templates, and making external API calls. It is not, however, written in a robust way. Notably, a good app should intelligently handle API errors, timeouts, etc.

Running it

Getting Flask

The Flask installation guide is quite good. It recommends learning and using virtualenv to create a seperate Python environment for each project -- which is handy.

You can also install Flask (and any other Python package) globally, using the pip package manager. If you're on Python 2.7.9, you already have pip. Then you can do this on the command line:

sudo python -m pip install flask

Otherwise, install pip serparately, and run:

sudo pip install flask

This project also includes a requirements.txt file, so you could:

cd PATH_TO_THIS_PROJECT
sudo pip install -r requirements.txt

Starting the app

Just run movie_groove/app.py! Point your browser to / and /api/docs.

See also

About

Movie Groove is an example mashup app, written in Python using Flask.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published