simple-justwatch-python-api 0.18.0__tar.gz → 0.18.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/PKG-INFO +28 -14
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/README.md +27 -13
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/pyproject.toml +1 -1
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/LICENSE +0 -0
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/__init__.py +0 -0
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/graphql.py +0 -0
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/justwatch.py +0 -0
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/query.py +0 -0
- {simple_justwatch_python_api-0.18.0 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/tuples.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: simple-justwatch-python-api
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.2
|
|
4
4
|
Summary: A simple JustWatch Python API
|
|
5
5
|
Keywords: justwatch,api,graphql
|
|
6
6
|
Author: Electronic Mango
|
|
@@ -713,14 +713,24 @@ This project is managed by [uv](https://docs.astral.sh/uv/).
|
|
|
713
713
|
|
|
714
714
|
## Table of contents
|
|
715
715
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
716
|
+
- [Installation](#installation)
|
|
717
|
+
- [Usage](#usage)
|
|
718
|
+
- [Search](#search)
|
|
719
|
+
- [Popular](#popular)
|
|
720
|
+
- [Details](#details)
|
|
721
|
+
- [Seasons](#seasons)
|
|
722
|
+
- [Episodes](#episodes)
|
|
723
|
+
- [Offers for countries](#offers-for-countries)
|
|
724
|
+
- [Providers](#providers)
|
|
725
|
+
- [Data structures](#data-structures)
|
|
726
|
+
- [Locale, language, country](#locale-language-country)
|
|
727
|
+
- [Request complexity](#request-complexity)
|
|
728
|
+
- [Maximum number of entries](#maximum-number-of-entries)
|
|
729
|
+
- [Provider codes](#provider-codes)
|
|
730
|
+
- [`providers` function](#providers-function)
|
|
731
|
+
- [Query parameters from JustWatch](#query-parameters-from-justwatch)
|
|
732
|
+
- [Stored output from other functions with offers](#stored-output-from-other-functions-with-offers)
|
|
733
|
+
- [Disclaimer](#disclaimer)
|
|
724
734
|
|
|
725
735
|
|
|
726
736
|
## Installation
|
|
@@ -734,12 +744,16 @@ pip install simple-justwatch-python-api
|
|
|
734
744
|
|
|
735
745
|
## Usage
|
|
736
746
|
|
|
737
|
-
This Python API has
|
|
747
|
+
This Python API has multiple functions:
|
|
738
748
|
|
|
739
|
-
- `search` - search for entries based on title
|
|
740
|
-
- `
|
|
741
|
-
- `
|
|
742
|
-
|
|
749
|
+
- [`search`](#search) - search for entries based on title
|
|
750
|
+
- [`popular`](#popular) - get a list of currently popular titles
|
|
751
|
+
- [`details`](#details) - get details for entry based on its node ID
|
|
752
|
+
- [`seasons`](#seasons) - get information about all seasons of a show
|
|
753
|
+
- [`episodes`](#episodes) - get information about all episodes of a season
|
|
754
|
+
- [`offers_for_countries`](#offers-for-countries) - get offers for entry based on its node ID,
|
|
755
|
+
can look for offers in multiple countries
|
|
756
|
+
- [`providers`](#providers) - get data about available providers (e.g., Netflix)
|
|
743
757
|
|
|
744
758
|
Detailed documentation is available in https://electronic-mango.github.io/simple-justwatch-python-api/.
|
|
745
759
|
|
|
@@ -16,14 +16,24 @@ This project is managed by [uv](https://docs.astral.sh/uv/).
|
|
|
16
16
|
|
|
17
17
|
## Table of contents
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
19
|
+
- [Installation](#installation)
|
|
20
|
+
- [Usage](#usage)
|
|
21
|
+
- [Search](#search)
|
|
22
|
+
- [Popular](#popular)
|
|
23
|
+
- [Details](#details)
|
|
24
|
+
- [Seasons](#seasons)
|
|
25
|
+
- [Episodes](#episodes)
|
|
26
|
+
- [Offers for countries](#offers-for-countries)
|
|
27
|
+
- [Providers](#providers)
|
|
28
|
+
- [Data structures](#data-structures)
|
|
29
|
+
- [Locale, language, country](#locale-language-country)
|
|
30
|
+
- [Request complexity](#request-complexity)
|
|
31
|
+
- [Maximum number of entries](#maximum-number-of-entries)
|
|
32
|
+
- [Provider codes](#provider-codes)
|
|
33
|
+
- [`providers` function](#providers-function)
|
|
34
|
+
- [Query parameters from JustWatch](#query-parameters-from-justwatch)
|
|
35
|
+
- [Stored output from other functions with offers](#stored-output-from-other-functions-with-offers)
|
|
36
|
+
- [Disclaimer](#disclaimer)
|
|
27
37
|
|
|
28
38
|
|
|
29
39
|
## Installation
|
|
@@ -37,12 +47,16 @@ pip install simple-justwatch-python-api
|
|
|
37
47
|
|
|
38
48
|
## Usage
|
|
39
49
|
|
|
40
|
-
This Python API has
|
|
50
|
+
This Python API has multiple functions:
|
|
41
51
|
|
|
42
|
-
- `search` - search for entries based on title
|
|
43
|
-
- `
|
|
44
|
-
- `
|
|
45
|
-
|
|
52
|
+
- [`search`](#search) - search for entries based on title
|
|
53
|
+
- [`popular`](#popular) - get a list of currently popular titles
|
|
54
|
+
- [`details`](#details) - get details for entry based on its node ID
|
|
55
|
+
- [`seasons`](#seasons) - get information about all seasons of a show
|
|
56
|
+
- [`episodes`](#episodes) - get information about all episodes of a season
|
|
57
|
+
- [`offers_for_countries`](#offers-for-countries) - get offers for entry based on its node ID,
|
|
58
|
+
can look for offers in multiple countries
|
|
59
|
+
- [`providers`](#providers) - get data about available providers (e.g., Netflix)
|
|
46
60
|
|
|
47
61
|
Detailed documentation is available in https://electronic-mango.github.io/simple-justwatch-python-api/.
|
|
48
62
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "simple-justwatch-python-api"
|
|
3
3
|
authors = [{name = "Electronic Mango", email = "78230210+Electronic-Mango@users.noreply.github.com"}]
|
|
4
|
-
version = "0.18.
|
|
4
|
+
version = "0.18.2"
|
|
5
5
|
description="A simple JustWatch Python API"
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = {file = "LICENSE"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|