maubot-tmdb/aiohttp_tester.py
Scott Wallace cc89e95403
Refactoring:
* Remove the movie poster parsing
* Fix some code issues
* Increase blurb trunctation length
2024-11-28 09:04:03 +00:00

14 lines
223 B
Python

import asyncio
from tmdb.tmdb_api import Movie
async def test():
movie = Movie()
await movie.load_parameters()
await movie.search_title("Breakfast Club")
await movie.close_session()
asyncio.run(test())