14 lines
296 B
Python
14 lines
296 B
Python
from tmdb.tmdb_api import Movie
|
|
import asyncio
|
|
import time
|
|
|
|
async def test():
|
|
start = time.time()
|
|
movie = Movie()
|
|
await movie.load_parameters()
|
|
id = await movie.search_title('Breakfast Club')
|
|
print(time.time() - start)
|
|
await movie.close_session()
|
|
|
|
asyncio.run(test())
|