usenetbinary-newsreaderembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
tmdbsimple
|
|
~~~~~~~~~~
|
|
|
|
*tmdbsimple* is a wrapper, written in Python, for The Movie Database (TMDb)
|
|
API v3. By calling the functions available in *tmdbsimple* you can simplify
|
|
your code and easily access a vast amount of movie, tv, and cast data. To find
|
|
out more about The Movie Database API, check out the overview page
|
|
http://www.themoviedb.org/documentation/api and documentation page
|
|
https://developers.themoviedb.org/3/getting-started
|
|
https://www.themoviedb.org/documentation/api/status-codes
|
|
|
|
:copyright: (c) 2013-2018 by Celia Oakley.
|
|
:license: GPLv3, see LICENSE for more details
|
|
"""
|
|
|
|
__title__ = 'tmdbsimple'
|
|
__version__ = '2.2.0'
|
|
__author__ = 'Celia Oakley'
|
|
__copyright__ = 'Copyright (c) 2013-2018 Celia Oakley'
|
|
__license__ = 'GPLv3'
|
|
|
|
import os
|
|
|
|
from .account import Account, Authentication, GuestSessions, Lists
|
|
from .base import APIKeyError
|
|
from .changes import Changes
|
|
from .configuration import Configuration, Certifications, Timezones
|
|
from .discover import Discover
|
|
from .find import Find
|
|
from .genres import Genres
|
|
from .movies import Movies, Collections, Companies, Keywords, Reviews
|
|
from .people import People, Credits, Jobs
|
|
from .search import Search
|
|
from .tv import TV, TV_Seasons, TV_Episodes, Networks
|
|
|
|
|
|
API_KEY = os.environ.get('TMDB_API_KEY', None)
|
|
API_VERSION = '3'
|
|
|