genres methods module

asynctmdb.methods.genres.movie(*, api_base_url: str = 'https://api.themoviedb.org/3', api_key: str, language: str = None, session: aiohttp.client.ClientSession) → typing.List[typing.Dict[str, typing.Union[int, str]]][source]

Get the list of official genres for movies.

More info at TMDb docs.

asynctmdb.methods.genres.tv(*, api_base_url: str = 'https://api.themoviedb.org/3', api_key: str, language: str = None, session: aiohttp.client.ClientSession) → typing.List[typing.Dict[str, typing.Union[int, str]]][source]

Get the list of official genres for TV shows.

More info at TMDb docs.