398 questions
Score of 0
1 answer
324 views
IMDb API GraphQL - query multiple names
I am using the IMDb API, and attempting to extract info using a GraphQL query. I wish to extract info for multiple actors using this query:
{
names(ids: ["nm0000158", "nm0000226",...
Score of 1
2 answers
123 views
IMDB load more button with puppeter (nodejs)
I'm trying to parse imdb movie connections (https://www.imdb.com/title/tt0090887/movieconnections/), but more button don't load info in each category (featured in, followeb by...). Puppeteer click ...
Score of -2
1 answer
171 views
How can I scrape the genres from a movie's IMDB page using rvest?
I'm trying to scrape the standard data (title, year, rating, genres) from an IMDB's page for a movie and I am stuck at genres. There isn't a .genre class like there used to be (and is commonly used in ...
Score of -2
1 answer
459 views
How can I use a csv file to get a list of IMDb URLs?
I have a .csv file with 1000 movies (https://github.com/LearnDataSci/articles/blob/master/Python%20Pandas%20Tutorial%20A%20Complete%20Introduction%20for%20Beginners/IMDB-Movie-Data.csv) and have been ...
Score of 0
2 answers
887 views
How to display the variable name in a Python DataFrame instead of the column name?
I'm currently studying the basics of data analysis with Python in Colab, and for that I'm using my IMDb watchlist as a dataset.
In the column Genres, several movie genres can be registered in the same ...
Score of 0
1 answer
800 views
How to scrape IMDB id / link from JustWatch?
Can we get the IMDB link from IMDB image of JustWatch website https://www.justwatch.com/in/movie/oppenheimer?
When I inspected the image elements of IMDB, there were no IMDB links.
However, when I ...
Score of 1
0 answers
314 views
Problems with Selenium, driver keeps crashing
This is my first time posting on Stack Overflow and my first time using Selenium, so please be kind! :) I am trying to scrape the links of the movies off the IMDb search results page for a deep ...
Score of 0
0 answers
220 views
i just run the codes for RNN on IMBD data i want to know that how i can improve accuracy
This is the code for RNN on IMDB data set and I provide entire code of this, whatever steps I have taken is shown in this, can you help me to improve this code and accuracy, what kind of steps should ...
Score of 0
1 answer
117 views
How can I scrape data of ```title``` and ```genres``` in Russian?
Here is my code, so how can I scrap data of title and genres in Russian or any other language (now I have it in English)?
from imdb import IMDb
def scrape_movie_info(movie_id):
ia = IMDb('http', ...
Score of 0
2 answers
258 views
Why is R Web scraping code to pick all cast members and directors on the IMDB website not working?
I want to scrape data from multiple pages of the IMDB website to get movie information on the Top Nigerian movies by popularity. I have been able to successfully get the title, year, synopsis, genre, ...
Score of 0
1 answer
965 views
IMDbDataAccessError: IMDbPy and Cinemagoer no longer work
I've been working with IMDbPy on and off for the last year. For a week now, all of my codes have stopped working and even the simple codes from tutorials don't work. I always get the same error ...
Score of 1
2 answers
1303 views
How to extract title name and rating of a movie from IMDB database?
I'm very new to web scrapping in python. I want to extract the movie name, release year, and ratings from the IMDB database. This is the website for IMBD with 250 movies and ratings https://www.imdb....
Score of 0
0 answers
160 views
Top 10 Genre in SQL
I am trying to get the top 10 Genres from the IMDB Movies database (CSV format). Normally it is an easy task all you have to do is group and count. But in this database genre is given in quite a weird ...
Score of 0
0 answers
379 views
IMDB Dataset using Pandas and MongoDB
I'm using pandas with read_csv because the dataset that is available in TSV.
https://datasets.imdbws.com/ - dataset link
(I'm using name.basics.tsv in the example below.
https://www.imdb.com/...
Score of -1
2 answers
101 views
Write SQL query to output the Maximum number and Minimum number of movies produces by diffrent actors and actresses between year 1991 and 2001
I need to write SQL query to output the Maximum number and Minimum number of movies produces by diffrent actors and actresses between year 1991 and 2001
query written . When I tried this, I got error ...