This is a hands on challenge for a Chadev Python meetup presentation on API's and Python debuggers by juzten. This challenge will help people get familiar with pulling data from an API and using a python debugger. Both topics were covered in the OMG's, PDB's, and API's presentation on 9/21/2015. Here is the presentation A sample script is provided to help get a jump start on pulling from the SWAPI.
SWAPI.CO - The Star Wars API: All the Star Wars data you've ever wanted
##TODO
1. Get the total number of the films.
2. Name of each film.
3. Total number of planets in each film.
4. Name of each planet in each film.
5. Find the longest starship in each film.
virtualenv env
source env/bin/activate
pip install -r requirements.txt