ps3838api 0.1.0__tar.gz → 0.1.1__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.
Potentially problematic release.
This version of ps3838api might be problematic. Click here for more details.
- {ps3838api-0.1.0/src/ps3838api.egg-info → ps3838api-0.1.1}/PKG-INFO +6 -3
- {ps3838api-0.1.0 → ps3838api-0.1.1}/README.md +3 -1
- {ps3838api-0.1.0 → ps3838api-0.1.1}/pyproject.toml +3 -2
- {ps3838api-0.1.0 → ps3838api-0.1.1/src/ps3838api.egg-info}/PKG-INFO +6 -3
- {ps3838api-0.1.0 → ps3838api-0.1.1}/LICENSE +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/setup.cfg +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/__init__.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/api.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/logic.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/matching.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/__init__.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/bets.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/errors.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/event.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/fixtures.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/lines.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/odds.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/models/tank.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/tank.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/totals.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api/utils/match_leagues.py +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api.egg-info/SOURCES.txt +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api.egg-info/dependency_links.txt +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api.egg-info/requires.txt +0 -0
- {ps3838api-0.1.0 → ps3838api-0.1.1}/src/ps3838api.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ps3838api
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A lightweight Python library to interact with the PS3838 (Pinnacle) API and place bets.
|
|
5
5
|
Author-email: Ilias Dzhabbarov <ilias.dzabbarov@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/iliyasone/ps3838api
|
|
8
8
|
Project-URL: Issues, https://github.com/iliyasone/ps3838api/issues
|
|
9
|
+
Keywords: ps3838,sports betting,api,pinnacle,odds,python
|
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -18,7 +19,7 @@ Dynamic: license-file
|
|
|
18
19
|
|
|
19
20
|
# Modern PS3838 API
|
|
20
21
|
|
|
21
|
-
A lightweight Python library to interact with the PS3838 API.
|
|
22
|
+
A lightweight Python library to interact with the PS3838 (Pinnacle) API and place bets.
|
|
22
23
|
|
|
23
24
|
## 🔑 Key Idea
|
|
24
25
|
|
|
@@ -26,6 +27,8 @@ This project aims to keep all method names and behavior as close as possible to
|
|
|
26
27
|
|
|
27
28
|
If you need assistance, contact me directly on Telegram: [@iliyasone](https://t.me/iliyasone) 💬
|
|
28
29
|
|
|
30
|
+
If you don’t have access to the PS3838 API (Pinnacle) yet, feel free to reach out — I can help you get started with obtaining access.
|
|
31
|
+
|
|
29
32
|
## ✨ Features
|
|
30
33
|
|
|
31
34
|
### `ps3838api.api` — Minimalist, Typed API Wrapper
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Modern PS3838 API
|
|
2
2
|
|
|
3
|
-
A lightweight Python library to interact with the PS3838 API.
|
|
3
|
+
A lightweight Python library to interact with the PS3838 (Pinnacle) API and place bets.
|
|
4
4
|
|
|
5
5
|
## 🔑 Key Idea
|
|
6
6
|
|
|
@@ -8,6 +8,8 @@ This project aims to keep all method names and behavior as close as possible to
|
|
|
8
8
|
|
|
9
9
|
If you need assistance, contact me directly on Telegram: [@iliyasone](https://t.me/iliyasone) 💬
|
|
10
10
|
|
|
11
|
+
If you don’t have access to the PS3838 API (Pinnacle) yet, feel free to reach out — I can help you get started with obtaining access.
|
|
12
|
+
|
|
11
13
|
## ✨ Features
|
|
12
14
|
|
|
13
15
|
### `ps3838api.api` — Minimalist, Typed API Wrapper
|
|
@@ -4,12 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ps3838api"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name = "Ilias Dzhabbarov", email = "ilias.dzabbarov@gmail.com" }
|
|
10
10
|
]
|
|
11
|
-
description = "
|
|
11
|
+
description = "A lightweight Python library to interact with the PS3838 (Pinnacle) API and place bets."
|
|
12
12
|
readme = "README.md"
|
|
13
|
+
keywords = ["ps3838", "sports betting", "api", "pinnacle", "odds", "python"]
|
|
13
14
|
requires-python = ">=3.11"
|
|
14
15
|
license = { text = "MIT" }
|
|
15
16
|
classifiers = [
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ps3838api
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A lightweight Python library to interact with the PS3838 (Pinnacle) API and place bets.
|
|
5
5
|
Author-email: Ilias Dzhabbarov <ilias.dzabbarov@gmail.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/iliyasone/ps3838api
|
|
8
8
|
Project-URL: Issues, https://github.com/iliyasone/ps3838api/issues
|
|
9
|
+
Keywords: ps3838,sports betting,api,pinnacle,odds,python
|
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -18,7 +19,7 @@ Dynamic: license-file
|
|
|
18
19
|
|
|
19
20
|
# Modern PS3838 API
|
|
20
21
|
|
|
21
|
-
A lightweight Python library to interact with the PS3838 API.
|
|
22
|
+
A lightweight Python library to interact with the PS3838 (Pinnacle) API and place bets.
|
|
22
23
|
|
|
23
24
|
## 🔑 Key Idea
|
|
24
25
|
|
|
@@ -26,6 +27,8 @@ This project aims to keep all method names and behavior as close as possible to
|
|
|
26
27
|
|
|
27
28
|
If you need assistance, contact me directly on Telegram: [@iliyasone](https://t.me/iliyasone) 💬
|
|
28
29
|
|
|
30
|
+
If you don’t have access to the PS3838 API (Pinnacle) yet, feel free to reach out — I can help you get started with obtaining access.
|
|
31
|
+
|
|
29
32
|
## ✨ Features
|
|
30
33
|
|
|
31
34
|
### `ps3838api.api` — Minimalist, Typed API Wrapper
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|