duke79 / boxofish

Movie reviews & ratings
https://play.google.com/store/apps/details?id=com.boxofish
Other
1 stars 0 forks source link

External APIs #15

Open duke79 opened 5 years ago

duke79 commented 5 years ago
duke79 commented 5 years ago
import tmdbsimple as tmdb
tmdb.API_KEY = 'e30bdefcb66c118c558f0793cf22e8e2'
#movie = tmdb.Movies(603)
# response = movie.info()
# print(movie)
search = tmdb.Search()
response = search.movie(query='The Bourne')
for s in search.results:
  print(s['title'], s['id'], s['release_date'], s['popularity'])
  print(s['poster_path'])

res = tmdb.Movies().top_rated(page=2)
for s in res['results']:
  print(s['title'])

Poster