You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`tvdbsimple` is a wrapper, written in Python, for TheTVDb.com
5
+
API v2. By calling the functions available in `tvdbsimple` you can simplify
6
+
your code and easily access a vast amount of tv and cast data. To find
7
+
out more about TheTVDb API, check out the [official api page](https://api.thetvdb.com/swagger/)
8
+
9
+
Features
10
+
--------
11
+
12
+
- Full API implementation. Supports Search, Series, Episode, Updated, User and Languages methods.
13
+
- Updated with the latest JSON API.
14
+
- Fully tested with automated tests and travis.ci.
15
+
- Supports Python 2.7, 3.3, 3.4, 3.5, 3.6.
16
+
- Easy to access data using Python class attributes.
17
+
- Easy to experiment with `tvdbsimple` functions inside the Python interpreter.
18
+
19
+
Installation
20
+
------------
21
+
22
+
`tvdbsimple` is available on the [Python Package Index](https://pypi.python.org/pypi/tvdbsimple).
23
+
24
+
You can install `tvdbsimple` using one of the following techniques:
25
+
26
+
- Use pip: `pip install tvdbsimple`
27
+
- Download the .zip or .tar.gz file from PyPI and install it yourself
28
+
- Download the [source from Github](http://github.com/phate89/tvdbsimple) and install it yourself
29
+
30
+
If you install it yourself, also install [requests](http://www.python-requests.org/en/latest).
31
+
32
+
API Key
33
+
-------
34
+
You will need an API key to TheTVDb to access the API. To obtain a key, follow these steps:
35
+
36
+
1) Register for and verify an [account](http://thetvdb.com/?tab=register).
37
+
2) [Log into](http://thetvdb.com/?tab=login) your account.
38
+
3) [Go to this page](http://thetvdb.com/?tab=apiregister) and fill your details to generate a new API key.
39
+
40
+
Examples
41
+
--------
42
+
All the functions are fully documented here but you can find several use examples in the [examples page](https://github.com/phate89/tvdbsimple/blob/master/EXAMPLES.rst).
43
+
44
+
License
45
+
-------
46
+
The module is distributed with a GPLv3 license, see [LICENSE](https://www.gnu.org/licenses/gpl-3.0.en.html) for more details
0 commit comments