Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.1 KB

README.md

File metadata and controls

26 lines (18 loc) · 1.1 KB

StarWars-API-challenge

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.

Installation Instructions

Create virtual environment

virtualenv env

Activate virtual environment

source env/bin/activate

Install project dependencies

pip install -r requirements.txt