A selenium semi-automation tool to assist IMDb contributors creating new film entries through the Adding a New Title page.
Must be logged in to IMDb.
pip install git+https://github.com/famgz/new-imdb.git
- organize data
url = "https://url-for-some-film.com"
data = {
'original_title' : str
'title_eng' : str
'directors' : list
'countries' : list
'country_code' : str
'year' : str
'length' : int
'languages' : list
'genres' : list
'production' : list
'producer' : list
'screenplay' : list
'cinematography' : list
'editing' : list
'synopsis' : str
}
- import and run
from new_imdb import new_imdb
new_imdb(url, data)
- follow the prompt instructions