Skip to content

Instantly share code, notes, and snippets.

View LucidPuru's full-sized avatar
😊
Happy boi :)

Purunjay Singh LucidPuru

😊
Happy boi :)
View GitHub Profile
# import necessary libraries
import webbrowser
# user input for TMDB ID and content type
try:
tmdb_id = int(input("Enter TMDB ID of movie / TV show: "))
except ValueError:
print("Invalid TMDB ID. Please enter valid integer.")
content_type = input("Enter content type (movie / tv): ").lower().strip()