simple-justwatch-python-api 0.18.1__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.1 → simple_justwatch_python_api-0.18.2}/PKG-INFO +10 -6
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/README.md +10 -6
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/pyproject.toml +1 -1
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/LICENSE +0 -0
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/__init__.py +0 -0
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/graphql.py +0 -0
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/justwatch.py +0 -0
- {simple_justwatch_python_api-0.18.1 → simple_justwatch_python_api-0.18.2}/src/simplejustwatchapi/query.py +0 -0
- {simple_justwatch_python_api-0.18.1 → 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
|
|
@@ -744,12 +744,16 @@ pip install simple-justwatch-python-api
|
|
|
744
744
|
|
|
745
745
|
## Usage
|
|
746
746
|
|
|
747
|
-
This Python API has
|
|
747
|
+
This Python API has multiple functions:
|
|
748
748
|
|
|
749
|
-
- `search` - search for entries based on title
|
|
750
|
-
- `
|
|
751
|
-
- `
|
|
752
|
-
|
|
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)
|
|
753
757
|
|
|
754
758
|
Detailed documentation is available in https://electronic-mango.github.io/simple-justwatch-python-api/.
|
|
755
759
|
|
|
@@ -47,12 +47,16 @@ pip install simple-justwatch-python-api
|
|
|
47
47
|
|
|
48
48
|
## Usage
|
|
49
49
|
|
|
50
|
-
This Python API has
|
|
51
|
-
|
|
52
|
-
- `search` - search for entries based on title
|
|
53
|
-
- `
|
|
54
|
-
- `
|
|
55
|
-
|
|
50
|
+
This Python API has multiple functions:
|
|
51
|
+
|
|
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)
|
|
56
60
|
|
|
57
61
|
Detailed documentation is available in https://electronic-mango.github.io/simple-justwatch-python-api/.
|
|
58
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
|