Skip to main content

A simple JustWatch Python API

Project description

Simple JustWatch Python API

CodeQL Black Flake8 isort Pytest Coverage Status PyPI - Version

A simple unofficial JustWatch Python API which uses GraphQL to access JustWatch data, built with httpx and Python3.11.

Table of contents

Installation

Project is available in PyPi:

pip install simple-justwatch-python-api

Usage

This Python API has 3 functions:

  • search - search for entries based on title
  • details - get details for entry based on its node ID
  • offers_for_countries - get offers for entry based on its node ID, can look for offers in multiple countries

Detailed documentation is available in https://electronic-mango.github.io/simple-justwatch-python-api/.

Example outputs from all commands are in examples/ directory.

Search

Search functions allows for searching entries based on a given title.

from simplejustwatchapi.justwatch import search

results = search("title", "US", "en", 5, True)

Only the first argument is required, it specifies a title to search.

Argument Type Required Default value Description
1 title str YES - Title to look up
2 country str NO "US" Country to search for offers
3 language str NO "en" Language of responses
4 count int NO 4 Up to how many entries should be returned
5 best_only bool NO True Determines whether only best offers should be returned

country must be ISO 3166-1 alpha-2 2-letter code , e.g. US, GB, FR. It should be uppercase, however lowercase codes are automatically converted to uppercase.

language is a ISO 639-1 (usually) 2-letter code, lowercase, e.g. en, fr.

count determines up to how many entries should be returned. If JustWatch GraphQL API returns fewer entries, then this function will also return fewer values.

best_only determines whether similar offers, but lower quality should be included in response. If a platform offers streaming for a given entry in 4K, HD and SD, then best_only = True will return only the 4K offer, best_only = False will return all three.

Returned value is a list of MediaEntry objects.

Example command and its output is in examples/search_output.py.

Details

Details function allows for looking up details for a single entry via its node ID. Node ID can be taken from output of the search command.

Output from this function contains the same data as a single entry from the search command. There's no reason to first use the search command, then use node ID from one of entries for this command.

from simplejustwatchapi.justwatch import details

results = details("nodeID", "US", "en", False)

Only the first argument is required - the node ID of element to look up details for.

Argument Type Required Default value Description
1 node_id str YES - Node ID to look up
2 country str NO "US" Country to search for offers
3 language str NO "en" Language of responses
5 best_only bool NO True Determines whether only best offers should be returned

General usage of these arguments matches the search command.

Returned value is a single MediaEntry object.

Example command and its output is in examples/details_output.py.

Offers for countries

This function allows looking up offers for entry by given node ID. It allows specifying a set of countries, instead of a single one. This way you can simultaneously look up offers for multiple countries.

from simplejustwatchapi.justwatch import offers_for_countries

results = offers_for_countries("nodeID", {"US", "UK", "CA"}, "en", True)

First two arguments are required - node ID, and set of countries.

Argument Type Required Default value Description
1 node_id str YES - Node ID to look up
2 countries set[str] YES - Set of countries to look up offers for
3 language str NO "en" Language of responses
5 best_only bool NO True Determines whether only best offers should be returned

Usage of language and best_only arguments matches the search command.

Returned value dict[str, list[Offer]], where key is country given as argument and value is a list of Offer tuples.

Example command and its output is in examples/offers_for_countries_output.py.

Return data structures

Detailed descriptions of all used data structures are available in the documentation.

Locale, language, country

Languages and countries are configured via ISO standard. Countries are following ISO 3166-1 alpha-2 standard (2-letter codes, uppercase). Languages are following ISO 639-1 standard (usually 2-letter codes, lowercase).

Language codes can also be country-specific, e.g. es-MX for Mexican Spanish, etc. The country part must be uppercase.

There is a list of supported locales in JustWatch REST API documentation. Any combination of those languages and countries should work with this API as well.

If you provide unsupported language JustWatch API should default to english.

Disclaimer

This API is in no way affiliated, associated, authorized, endorsed by, or in any way officially connected with JustWatch. This is an independent and unofficial project. Use at your own risk.

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

simple_justwatch_python_api-0.15.tar.gz (48.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file simple_justwatch_python_api-0.15.tar.gz.

File metadata

File hashes

Hashes for simple_justwatch_python_api-0.15.tar.gz
Algorithm Hash digest
SHA256 1726b6949abcec2ff9a3b2bb63a53805693152124a4846c73e29ea6981ea18c3
MD5 72fe18e2862709598677a4e1207402bc
BLAKE2b-256 350b52d75d66b00508f3067675475af9aecf98f5e3f134043573770473ebd40b

See more details on using hashes here.

File details

Details for the file simple_justwatch_python_api-0.15-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_justwatch_python_api-0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 d5eb142cb7f8447a1262e0fca6f2020c4288afea2519fd041ca707df197cb2bc
MD5 16ce20ef890b11b0e7047ed900ad859f
BLAKE2b-256 80b43e6919d77ae7957c08632ce93066e7f3f3c42a121b1dce02e77b1b37ad06

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