Metadata-Version: 1.1
Name: easytrakt
Version: 0.1.3
Summary: simple client for Trakt.TV api
Home-page: https://github.com/lad1337/easytrakt
Author: Dennis Lutter
Author-email: lad1337@gmail.com
License: UNKNOWN
Description: #EasyTrakt
        
        ![alt travis](https://travis-ci.org/lad1337/easytrakt.svg)
        
        ## install
        
        ```python
        pip install easytrakt
        ```
        ## use
        
        ```python
        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`
        
        ```python
        # 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
        
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
