We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
In imdb.py, in the section "....method to search on IMDB...."
name = name.replace(" ", "+") if year is None: url = f"https://www.imdb.com/find?q={name}" else: assert isinstance(year, int) url = f"https://www.imdb.com/find?q={name}+{year}"
To search for Movies change the to urls to: url = f"https://www.imdb.com/find?s=tt&q={name}" url = f"https://www.imdb.com/find?s=tt&q={name}+{year}"
To search for TV Shows change the to urls to: url = f"https://www.imdb.com/find?s=ep&q={name}" url = f"https://www.imdb.com/find?s=ep&q={name}+{year}"
To search for Actors/Celebs change the to urls to: url = f"https://www.imdb.com/find?s=nm&q={name}" url = f"https://www.imdb.com/find?s=nm&q={name}+{year}"
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: