Questions tagged [imdb]

The Internet Movie Database (IMDb) is an online database of information related to films, television programs, and video games. This includes actors, production crew personnel, and fictional characters featured in these three visual entertainment media.

The Internet Movie Database (IMDb) is an online database of information related to films, television programs, and video games. This includes actors, production crew personnel, and fictional characters featured in these three visual entertainment media.

Resources:

396 questions
5
votes
1 answer

Getting movie ID from filmography in IMDbPy results

I'm trying to create a dataset that allows me to join actors and movies based on actor IDs and movie IDs from the Python IMDb API. Right now, I am trying to extract a list of movie IDs from an actor's filmography and cannot do it. For example, I…
snapcrack
  • 1,761
  • 3
  • 20
  • 40
5
votes
2 answers

pandas: How to plot the pie diagram for the movie counts versus genre of IMDB movies in pandas?

I have the following dataset: import pandas as pd import numpy as np %matplotlib inline df = pd.DataFrame({'movie' : ['A', 'B','C','D'], 'genres': ['Science Fiction|Romance|Family', 'Action|Romance', …
user8864088
5
votes
1 answer

Get list of upcoming movies from IMDb

I'm currently building a website and one of the blocks in the website features upcoming films (for the next week or so). I figured out IMDb is the best place to go to for that. Problem is, IMDb has no API, and I have no idea on how to extract the…
Gofilord
  • 6,239
  • 4
  • 27
  • 43
5
votes
1 answer

Playing IMDB videos in my android app?

Is it possible to get url and stream and play movies trailor on my android application? i find some useful meterials that help me to play from youtube but due to some reason youtube is banned in my country. does imdb provides any API to doing this?
user1014191
5
votes
5 answers

API or any other way to access IMDB TOP 250 list?

I have done extensive research and found that I couldn't find an API. Is there any available API to get the TOP 250 list? Or another way to get access to the list? I tried accessing the page HTML and parsing in my JSP backend. But the problem here…
vivek_jonam
  • 3,237
  • 8
  • 32
  • 44
4
votes
1 answer

How to retrieve the storyline paragraph with imdbpy?

So far, I haven't figured out how to retrieve the short description paragraph from imdb with imdbpy. I can retrieve a very (very) long plot this way though : ia = IMDb() movie = ia.search_movie("brazil") movie = movie[0] movie =…
leplatrem
  • 1,005
  • 13
  • 25
4
votes
1 answer

ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type list) in Keras/Tensorflow Python

i'm currently working for a binary text classification using imdb keras dataset. I have been try to fix this problem for a few hours, looking for answer in stackoverflow and github but that doesn't help. Here's my code import tensorflow as tf from…
Philip Purwoko
  • 407
  • 5
  • 20
4
votes
1 answer

Why do I get so many warnings and some errors when using IMDbPY?

I'm using IMDbPY to retrieve data from IMDb. I'm getting the right results and everything looks OK except one thing: No matter what I do, I get warnings. The results are fine, but they appear only after a long list of warnings and sometimes…
snakile
  • 52,936
  • 62
  • 169
  • 241
4
votes
1 answer

How do I install IMDbPY on Windows?

I would like to start using IMDbPY but I can't find a Windows installer on their site. What is the most simple way to install it? Is there a way to install it using my Python interpreter?
snakile
  • 52,936
  • 62
  • 169
  • 241
4
votes
1 answer

Difficulty extracting IMDb ratings by demographic (with IMDbpy)

I would like to collect the IMDb rating details by demographic (gender, age group). When I try to use the get_movie_vote_details module in imdbpy, my output is empty. Here is my code: import imdb i = imdb.IMDb(accessSystem='http') movie =…
driskerr
  • 45
  • 6
4
votes
2 answers

BadZipFile: File is not a zip by importing keras

When I run this code, I got the following error. I have tried different techniques to get rid of this problem but couldn't. May I request to someone who can help me to solve this issue. There are some solutions to the same problem but I couldn't…
Newroz
  • 51
  • 2
  • 5
4
votes
2 answers

Using retrofit with IMDB API

I'm building a simple IMDB app and I'm almost done save for one tiny detail. The API(http://www.omdbapi.com/) supplies only 10 movies at a time, and the user can specify which "page" do they want. I would like to retrieve all entries. My code looks…
Haruspik
  • 412
  • 5
  • 17
4
votes
2 answers

Memory leak with IE 11 that doesn't occur with Google Chrome

I've recently encountered a serious memory leak issue with IE 11 that doesn't occur at all with Google Chrome. (It does occur with Firefox, but not to the same extent). To observe it, follow these steps: Open an IE 11 window and a task manager…
trevbet
  • 145
  • 1
  • 12
4
votes
2 answers

How would YOU compute IMDB movie rating?

I'm doing this only for learning purposes. I've no intentions of reversing the methods of IMDB. I asked myself I owned IMDB or similar website. How would I compute the movie rating? All I can think of is Weighted Average(which is nothing but…
claws
  • 52,236
  • 58
  • 146
  • 195
4
votes
1 answer

Getting episode info from OMDb API

I'm using the awesome OMDb API in my app, and I wanted to be able to search for episode info using this API. So far I've been able to search for movies / episodes but I couldn't find a way to search for a specific episode. (I guess I could do this…
Jonathan Perry
  • 2,953
  • 2
  • 44
  • 51
1
2
3
26 27