File size: 269 Bytes
e566133
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import re
from tmdbv3api import TMDb, Search, Movie,TV
from FileStream.config import TMDB

# Initialize the TMDb API
tmdb = TMDb()
tmdb.api_key = TMDB.API  # Replace with your actual TMDb API key

# Initialize the Search class
search = Search()
movie=Movie()
tv=TV()