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
1
vote
1 answer

ValueError: Object arrays cannot be loaded when allow_pickle=False for IMDB data for Keras

First I am using Tensorflow 1.15 and Keras 2.2.4. I ran the following code in Jupyter Notebook: from keras.datasets import imdb from keras import preprocessing max_features = 10000 maxlen = 20 …
Huseyin Salis
  • 71
  • 2
  • 8
1
vote
0 answers

list not getting written in csv using df.to_csv

My dataframe looks like this: df_dict = {'Title': titles, 'Relase': release, 'Audience Rating': audience_rating, 'Runtime': runtime, 'Genre': genre, 'Votes': votes, 'Director': directors, 'Actors': actors} df =…
beth76
  • 11
  • 2
1
vote
0 answers

Cannot import IMDB

Good evening. I have made a virutalenv in Linux Mint 19. I have installed IMDbPY==6.8. I have my file movie.py in a MyProject folder. When I run python movie.py I get "Cannot Import IMDB". I found a 2016 thread on here that said to make sure that I…
linuxdesire
  • 65
  • 1
  • 2
  • 9
1
vote
2 answers

Is there a way to extract IMDb reviews using IMDbPY?

I do not need the data-set, that's available in Kaggle . I want to extract a movie review from IMDb using IMDbPY or any other scraping method . https://imdbpy.github.io/
1
vote
2 answers

How to convert TMDB ID to IMDB ID

This API url: https://api.themoviedb.org/3/tv/1399?api_key=8d6d91941230817f7807d643736e8a49&append_to_response=external_ids outputs IMDB ID with a lot of things including this result:…
Sadek Ahmed
  • 13
  • 1
  • 4
1
vote
3 answers

IMDB API - Retrieve all movies from a list?

I would like to know if there is a way to retrieve all the movies from a list (this one for example : https://www.imdb.com/list/ls052535080/) via an API ? I see nothing for this kind of use. Thanks for your help !
1
vote
1 answer

How do I Import imdb dataset using Colab?

I am trying to import imdb dataset from keras on CoLab platform. and I got this error: AttributeError Traceback (most recent call last) /usr/local/lib/python3.6/dist-packages/keras/backend/tensorflow_backend.py in…
1
vote
1 answer

How do I get length of the movie using Imdbpy library?

I know I may be asking pretty silly question. But I haven't found an answer for the question. How can I get the length of a movie using Imdbpy library? I do see that there is duration for any movie in imdb.com but I didn't find any key or variable…
Underoos
  • 4,708
  • 8
  • 42
  • 85
1
vote
1 answer

Consuming IMDB api results bad json

I have a simple program that consumes IMDB api, I'm getting the result, but it was shown as error because the result is not a structured json. MovieService.ts export class MovieService { constructor(private http:HttpClient) { } …
Ranjith Varatharajan
  • 1,596
  • 1
  • 33
  • 76
1
vote
4 answers

how to extract text written outside h4 tag using scrapy python

the field mark with blue, those are the field i am trying to scrape

Budget:

"€650,000 " (estimated)
I want to scrape…
1
vote
1 answer

get filmorgaphy for a chosen company with IMDBPY

From the documentation i see that companies has only 'main' and don't have 'filmography' unlike persons, but are there a way to fetch movies for the chosen company? Maybe it's possible to see the list of 'Films in Production' and 'Past Film &…
cat_on_the_mat
  • 100
  • 1
  • 9
1
vote
1 answer

Fetching release date of an episode using IMDBpy API in python

I want to fetch the release date of a episode e.g GOT S03E04 - 21 Apr. 2013 I have been able to get to the ID of the episode using this API but can't seem to find my way around to release date. I know that this API fetches release year so it must…
1
vote
0 answers

Error When Checking Target (Keras)

Hi I am following this code along from Deep learning with python Book. I am trying to train a model with pretrained word embeddings on raw IMDB dataset. I get this error how to fix this. I followed this process 1. Processing the labels of the raw…
Michael Yadidya
  • 1,397
  • 1
  • 9
  • 15
1
vote
1 answer

Webscraping using beautifulsoup

I am trying to scrape reviews from Imdb movies using python3.6. However when I print my 'review', only 1 review pops up and I am not sure why the rest does not pop up. This does not happen for my 'review_title'. Any advise or help is greatly…
Lacri Mosa
  • 159
  • 1
  • 10
1
vote
1 answer

Ratings within Demographic using IMDBPy

Is any way to get the movie ratings distribution by demographics using imdbpy? For example, I can get this data http://www.imdb.com/title/tt0780504/ratings with the following code import imdb i = imdb.IMDb(accessSystem='http') movie =…
dmil
  • 119
  • 1
  • 9