tvdb_api
tvdb_api copied to clipboard
Simple to use interface to TheTVDB.com API in Python
I got a mail from TheTVDB Full email text Our v4 API launch timeline, upcoming features, and new ways to access the API Hello, There are some big changes coming...
This should be a simple one-- there are several services that proxy and cache thetvdb (one such is Plex). They use the exact same API, forwarding uncached requests, however cache...
Accessing the actors API endpoint for a show with no actors added will throw a `tvdb_error` as if the show is missing. This is technically a bug with TVDB -...
When processing an uncaught exception is raised due to there being no actors page for the series. Relvant part of the trace is: ``` .../tvdb_api.py", line 852, in _loadUrl raise...
I followed the readme and was able to create the variable `t`. But when I try to do `show = t['scrub']`, it just gives me "tvdb_api.tvdb_error: Not authorized" error. For...
fixes #73 / #85
The **Show** class should support ___get_item__() slice_, which comes in handy when we want to get only a few seasons e.g., `show[2:4]` (or all seasons without specials - `show[1:]`). That'd...
The **firstaired** dates could be parsed and converted to Python **datetime.datetime()** objects, which's sometimes helpful a bit.
tvdb_api 3.x will be last version to support Python 2 - from then only Python 3.5 onwards will be supported