Scott Wallace
cc89e95403
* Remove the movie poster parsing * Fix some code issues * Increase blurb trunctation length
14 lines
223 B
Python
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())
|