398 questions
0
votes
1
answer
196
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",...
1
vote
2
answers
112
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 ...
-2
votes
1
answer
151
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 ...
-2
votes
1
answer
406
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 ...
0
votes
2
answers
773
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 ...
0
votes
1
answer
746
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 ...
1
vote
0
answers
297
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 ...
0
votes
0
answers
208
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 ...
0
votes
1
answer
104
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', ...
0
votes
2
answers
186
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, ...
0
votes
1
answer
941
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 ...
1
vote
2
answers
1k
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....
0
votes
0
answers
145
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 ...
0
votes
0
answers
361
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/...
-1
votes
2
answers
97
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 ...