PyTrakt
PyTrakt copied to clipboard
A Pythonic interface to the Trakt.tv REST API
Used to work fine till recently - now it gives me the following error: self._lists = [UserList(creator=slugify(self.username), user=self, TypeError: __new__() got an unexpected keyword argument 'type'
This commit 745cbb3b558cacc4e512509ccf2807c4f7740e0b adds **get_watched** and **get_collection** functions with wrong uri in sync.py. `uri = 'sync/watchlist'` because of a wrong copy/paste from **get_watchlist** function.
As per trakt api here: https://trakt.docs.apiary.io/#reference/sync/remove-ratings/remove-ratings
I'm using the code ```python me = User("Frazzer951") shows = me.watched_shows ``` To get a list of all the shows on my watchlist. I want to filter the list out...
Thanks for the answer in issue 154, but when I upgraded to version 3.2.1 and tried to do this code: show=trakt.tv.search('Hunter x Hunter',year=2011) season = show.seasons[2] logging.info("season: %s. Season.ext: %s",season,season.ext)...
Hi, this issue is a follow up from an issue I have on PlexTraktSync available here: https://github.com/Taxel/PlexTraktSync/issues/615 Two examples of shows that are not slugified correctly: https://trakt.tv/shows/re-zero-starting-life-in-another-world https://trakt.tv/shows/so-i-m-a-spider-so-what I will...
- https://docs.python.org/3/library/typing.html#typing.NamedTuple NOTE: there appears `Translation` being present in `movie.py` and `tv.py`. and they are not even identical.
Requires (must be merged first): - https://github.com/moogar0880/PyTrakt/pull/173 Also: - [ ] Ensure PR for dropping things deprecated here is present
When trying to get the collection progress for a TV Show I always get None as returned value. Tried TVShow("The Last Kingdom") and TVShow("Grey's Anatomy"). It seems that it always...
Fixes https://github.com/moogar0880/PyTrakt/issues/160 Requires (must be merged first): - https://github.com/moogar0880/PyTrakt/pull/183