simple client for Trakt.TV api
Project description
install
pip install easytrakt
use
from easytrakt import Client
client = Client()
search_results = client.search("The Big Lebowski")
movie = search_results[0]
assert movie.title == "The Big Lebowski"
with OAuth you need a session with a token this libary does not take care of OAuth authentcation but can use a OAuth2Session from requests_oauthlib
# you get this stuff from the oauth process
token = {
"access_token": "",
"created_at": 1433447370,
"expires_in": 7776000,
"expires_at": 1441223370.73398,
"token_type": "bearer",
"scope": ["public"],
"refresh_token": ""
}
from requests_oauthlib import OAuth2Session
session = OAuth2Session(your_app_client_id, token=token)
from easytrakt import Client
client = Client(session)
search_results = client.shows("Dexter")
show = search_results[0]
assert show.title == "Dexter"
# all ids are behind 'ids'
assert show.ids.trakt == 1396
# the trakt id has a short version
assert show.ids.trakt == show.trakt
# for a show/movie it's also the .id
assert show.trakt == show.id
# or if you have the trakt id
from easytrakt.models import Show
# still need a client ...
dexter = Show(client, 1396)
for season in dexter.seasons:
print season.number
print season.images.poster.medium
for episode in season.episodes:
print episode.number
print epidode.title
print episode.first_air_date
print episode.images.screenshot.full
every attribute is build dynamically, to get all keys on the current level call .keys() of any model class
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
easytrakt-0.1.6.tar.gz
(10.3 kB
view details)
File details
Details for the file easytrakt-0.1.6.tar.gz
.
File metadata
- Download URL: easytrakt-0.1.6.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 871323f2af850c56d464f9211035ae4592662cc6acfa6a459b5860f06032d838 |
|
MD5 | 75758d089fea1e711fc408e9647e3dc8 |
|
BLAKE2b-256 | 6851689a8faca3d653b32fa91005801be6977a4f98ba1edade27aa07efb226f2 |