This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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() |