Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 98794f0

Browse filesBrowse files
committed
Added direct API links, JSON dumps, and JSON to CSV permalinks
1 parent d4a0336 commit 98794f0
Copy full SHA for 98794f0

File tree

Expand file treeCollapse file tree

1 file changed

+45
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+45
-1
lines changed

‎playtime/lesson05_firstapi.py

Copy file name to clipboardExpand all lines: playtime/lesson05_firstapi.py
+45-1Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,48 @@
1717
# Goal 3:
1818
# Integrate this with the Open Movie Database API: http://www.omdbapi.com/
1919
# 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

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.