Spaces:
Paused
Paused
File size: 593 Bytes
869331d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import requests
from tmdbv3api import TMDb, Movie, TV
from loadenv import load_env
import config
env_vars = load_env()
TMDB_KEY = env_vars.get('TMDB_KEY')
async def get_TMDb_id_from_IMDb_id(imdb_id,client):
response = await client.get(f'https://api.themoviedb.org/3/find/{imdb_id}',
params={'external_source': 'imdb_id', 'api_key': f'{TMDB_KEY}'})
tmbda = response.json()
if tmbda['movie_results']:
return tmbda['movie_results'][0]['id']
elif tmbda['tv_results']:
return tmbda['tv_results'][0]['id']
else:
return None |