themoviedb
themoviedb copied to clipboard
A modern and easy to use API wrapper for The Movie Database (TMDb) API v3 written in Python.
- [ ] Get Details - [ ] Check Item Status - [ ] Create List - [ ] Add Movie - [ ] Remove Movie - [ ] Clear...
Didn't build on my python 3.12, so I went ahead and updated some dependencies.
Unfortunately on Python 3.12.4, when building aiohttp it leads to this issue https://github.com/aio-libs/frozenlist/issues/433 Would be great to upgrade aiohttp to make it Pyton 3.12 compatible.
Hi there, First thanks for this very-well written Python API binding for TMDB API: saves my life ! I'm currently searching movies like this: ```py movies = tmdb_client.search().movies(query=title, primary_release_year=year) ```...