Skip to main content

Asynchronous API wrapper for TMDb (https://www.themoviedb.org/).

Project description

PyPI Version Travis Build Status Code Coverage Code Issues ISC License

Asynchronous API wrapper for TMDb.

Compatibility

aTMDb uses asyncio with the async and await syntax, so is only compatible with Python versions 3.5 and above.

Installation

atmdb can be installed from PyPI using pip:

pip install atmdb

Testing

You can run the tests with python setup.py test. To include the integration suite, ensure that the environment variable TMDB_API_TOKEN is set to a valid API token, and use --runslow if running py.test directly.

Usage

Client

The core TMDbClient must be instantiated with a valid API token (see the API FAQ for more information), either directly:

from atmdb import TMDbClient

client = TMDbClient(api_token='<insert your token here>')

or as the TMDB_API_TOKEN environment variable:

client = TMDbClient.from_env()

You can then access the API by calling asynchronous helper methods on the client instance:

movie = await client.get_movie(550)
assert movie.title == 'Fight Club'

Any API endpoints not currently exposed via the helper methods can be accessed by using the url_builder and get_data methods directly, for example:

url = client.url_builder('company/{company_id}', dict(company_id=508))
                       # ^ endpoint            # ^ parameters to insert
company = await client.get_data(url)
assert company.get('name') == 'Regency Enterprises'

Note that, if you aren’t using a helper method, the result is just a vanilla dictionary.

Utilities

aTMDb also exposes utilities for working with the API and models at a higher level of abstraction, for example:

from aTMDb import TMDbClient
from aTMDb.utils import find_overlapping_actors

actors = await find_overlapping_actors(
    ['monty python holy grail', 'meaning of life'],
    TMDbClient(api_token='<insert your token here>'),
)
assert any(person.name == 'Eric Idle' for person in overlap)

Documentation

Additional documentation is available on PythonHosted.

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

atmdb-0.2.3.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

atmdb-0.2.3-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file atmdb-0.2.3.tar.gz.

File metadata

  • Download URL: atmdb-0.2.3.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for atmdb-0.2.3.tar.gz
Algorithm Hash digest
SHA256 3eb0dfd11728ca1def73089ba342c81d3166ecc0a48088892a5a9729cac5f1d3
MD5 416d434f949af326181a96e140beb402
BLAKE2b-256 2dd0d54ab7b7b59201ddf7b852bbef33b8e9e8e14bc53ce1b7c3d86be28f4a12

See more details on using hashes here.

File details

Details for the file atmdb-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for atmdb-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 07e45aa455d1888e3c336b1d247f327436c5b6f8e9aacc1d94e96beb57eeab14
MD5 02bb2af989c54bf13fba3fbbc273bc37
BLAKE2b-256 37440663c38f8dbc13211eb36836f234d9c5116ae8c63bd9101280f5a6d88c30

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page