|
17 | 17 | # Goal 3:
|
18 | 18 | # Integrate this with the Open Movie Database API: http://www.omdbapi.com/
|
19 | 19 | # Display all of the details from both APIs when searching for a movie.
|
20 |
| -# Note that you may need to prefix your ImdbIDs with 'tt' to get the search to work. |
| 20 | +# Note that you may need to prefix your ImdbIDs with 'tt' to get the search to work. |
| 21 | + |
| 22 | +# Copy these URLs into your browser! |
| 23 | +# To visualize as a CSV, copy the JSON into http://konklone.io/json |
| 24 | + |
| 25 | +# Sample Bechdel test API returns: http://bechdeltest.com/api/v1/getMovieByImdbId?imdbid=0367631 |
| 26 | +# JSON: |
| 27 | + # { |
| 28 | + # "visible": "1", |
| 29 | + # "date": "2009-12-05 05:13:37", |
| 30 | + # "submitterid": "270", |
| 31 | + # "rating": "3", |
| 32 | + # "dubious": "0", |
| 33 | + # "imdbid": "0367631", |
| 34 | + # "id": "551", |
| 35 | + # "title": "D.E.B.S.", |
| 36 | + # "year": "2004" |
| 37 | + # } |
| 38 | +# JSON to CSV link: http://konklone.io/json/?id=11488879 |
| 39 | + |
| 40 | +# Sample Open Movie Database API returns: http://www.omdbapi.com/?i=tt0367631&t= |
| 41 | +# JSON: |
| 42 | + # { |
| 43 | + # "Title": "D.E.B.S.", |
| 44 | + # "Year": "2004", |
| 45 | + # "Rated": "PG-13", |
| 46 | + # "Released": "25 Mar 2005", |
| 47 | + # "Runtime": "91 min", |
| 48 | + # "Genre": "Action, Comedy, Romance", |
| 49 | + # "Director": "Angela Robinson", |
| 50 | + # "Writer": "Angela Robinson", |
| 51 | + # "Actors": "Sara Foster, Jordana Brewster, Meagan Good, Devon Aoki", |
| 52 | + # "Plot": "Plaid-skirted schoolgirls are groomed by a secret government agency to become the newest members of the elite national-defense group, D.E.B.S.", |
| 53 | + # "Language": "English", |
| 54 | + # "Country": "USA", |
| 55 | + # "Awards": "1 win & 2 nominations.", |
| 56 | + # "Poster": "http://ia.media-imdb.com/images/M/MV5BMjA0OTU5ODgyOF5BMl5BanBnXkFtZTcwODczNDgyMQ@@._V1_SX300.jpg", |
| 57 | + # "Metascore": "42", |
| 58 | + # "imdbRating": "5.2", |
| 59 | + # "imdbVotes": "10,563", |
| 60 | + # "imdbID": "tt0367631", |
| 61 | + # "Type": "movie", |
| 62 | + # "Response": "True" |
| 63 | + # } |
| 64 | +# JSON to CSV link: http://konklone.io/json/?id=11488839 |
0 commit comments