maubot-tmdb/aiohttp_tester.py

14 lines
223 B
Python
Raw Permalink Normal View History

2021-07-03 08:29:08 +01:00
import asyncio
from tmdb.tmdb_api import Movie
2021-07-03 08:29:08 +01:00
2021-07-03 08:29:08 +01:00
async def test():
movie = Movie()
await movie.load_parameters()
await movie.search_title("Breakfast Club")
2021-07-03 08:29:08 +01:00
await movie.close_session()
2021-07-03 08:29:08 +01:00
asyncio.run(test())