sharpapi 0.3.1__tar.gz → 0.3.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.
- {sharpapi-0.3.1 → sharpapi-0.3.2}/CHANGELOG.md +9 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/PKG-INFO +3 -3
- {sharpapi-0.3.1 → sharpapi-0.3.2}/pyproject.toml +3 -3
- {sharpapi-0.3.1 → sharpapi-0.3.2}/.gitignore +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/LICENSE +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/README.md +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/SECURITY.md +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/__init__.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/_base.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/_utils.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/async_client.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/client.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/exceptions.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/models.py +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/py.typed +0 -0
- {sharpapi-0.3.1 → sharpapi-0.3.2}/src/sharpapi/streaming.py +0 -0
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the `sharpapi` Python SDK are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.3.2 — 2026-05-07
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Update `Repository` and `Changelog` URLs in package metadata to use the
|
|
10
|
+
canonical `SharpAPI-Python` repo name (was lowercase `sharpapi-python`,
|
|
11
|
+
redirected by GitHub but worth making canonical on PyPI). Metadata-only
|
|
12
|
+
release; no code changes.
|
|
13
|
+
|
|
5
14
|
## 0.3.1 — 2026-05-06
|
|
6
15
|
|
|
7
16
|
### Added — TeamRef metadata
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sharpapi
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Official Python SDK for the SharpAPI real-time sports betting odds API
|
|
5
5
|
Project-URL: Homepage, https://sharpapi.io
|
|
6
6
|
Project-URL: Documentation, https://docs.sharpapi.io/sdks/python
|
|
7
|
-
Project-URL: Repository, https://github.com/Sharp-API/
|
|
8
|
-
Project-URL: Changelog, https://github.com/Sharp-API/
|
|
7
|
+
Project-URL: Repository, https://github.com/Sharp-API/SharpAPI-Python
|
|
8
|
+
Project-URL: Changelog, https://github.com/Sharp-API/SharpAPI-Python/releases
|
|
9
9
|
Author-email: SharpAPI <hello@sharpapi.io>
|
|
10
10
|
License-Expression: MIT
|
|
11
11
|
License-File: LICENSE
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "sharpapi"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "Official Python SDK for the SharpAPI real-time sports betting odds API"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -35,8 +35,8 @@ test = ["pytest>=8.0", "pytest-asyncio>=0.23", "respx>=0.21"]
|
|
|
35
35
|
[project.urls]
|
|
36
36
|
Homepage = "https://sharpapi.io"
|
|
37
37
|
Documentation = "https://docs.sharpapi.io/sdks/python"
|
|
38
|
-
Repository = "https://github.com/Sharp-API/
|
|
39
|
-
Changelog = "https://github.com/Sharp-API/
|
|
38
|
+
Repository = "https://github.com/Sharp-API/SharpAPI-Python"
|
|
39
|
+
Changelog = "https://github.com/Sharp-API/SharpAPI-Python/releases"
|
|
40
40
|
|
|
41
41
|
[tool.hatch.build.targets.wheel]
|
|
42
42
|
packages = ["src/sharpapi"]
|
|
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
|