trakt: Python interface to Trakt.tv¶
Release v3.4.31.
This module is designed to be a Pythonic interface to the Trakt.tv. REST API. The official documentation for which can be found here. trakt contains interfaces to all of the Trakt.tv functionality in an, ideally, easily scriptable fashion.
More information about getting started and accessing the information you thirst for can be found throughout the documentation below.
Installation¶
There are two ways through which you can install trakt
Install Via Pip¶
To install with pip, just run this in your terminal:
$ pip install pytrakt
Get the code¶
trakt is available on GitHub.
You can either clone the public repository:
$ git clone git://github.com/glensc/python-pytrakt.git
Download the tarball:
$ curl -OL https://github.com/glensc/python-pytrakt/tarball/main
Or, download the zipball:
$ curl -OL https://github.com/glensc/python-pytrakt/zipball/main
Once you have a copy of the source, you can embed it in your Python package, or install it into your site-packages easily:
$ python setup.py install
User Guide¶
Below you will find links to the generated documentation of the trakt module, including example usages.