openmatchkit 0.2.1__tar.gz → 0.2.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.
Files changed (53) hide show
  1. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/CHANGELOG.md +5 -0
  2. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/PKG-INFO +5 -4
  3. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/README.md +4 -3
  4. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/pyproject.toml +1 -1
  5. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/http.py +1 -1
  6. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  7. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  8. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  9. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/ISSUE_TEMPLATE/source_adapter.md +0 -0
  10. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/pull_request_template.md +0 -0
  11. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/workflows/ci.yml +0 -0
  12. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.github/workflows/publish.yml +0 -0
  13. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/.gitignore +0 -0
  14. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/CODE_OF_CONDUCT.md +0 -0
  15. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/CONTRIBUTING.md +0 -0
  16. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/DATA_SOURCES.md +0 -0
  17. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/LICENSE +0 -0
  18. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/PRIVACY.md +0 -0
  19. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/ROADMAP.md +0 -0
  20. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/SECURITY.md +0 -0
  21. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/docs/detailed-data.md +0 -0
  22. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/docs/index.md +0 -0
  23. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/docs/prediction.md +0 -0
  24. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/docs/sources.md +0 -0
  25. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/examples/fixtures_demo.py +0 -0
  26. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/examples/live_demo.py +0 -0
  27. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/examples/prediction_demo.py +0 -0
  28. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/__init__.py +0 -0
  29. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/cli.py +0 -0
  30. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/client.py +0 -0
  31. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/exceptions.py +0 -0
  32. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/export.py +0 -0
  33. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/models.py +0 -0
  34. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/prediction/__init__.py +0 -0
  35. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/prediction/elo.py +0 -0
  36. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/prediction/poisson.py +0 -0
  37. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/sources/__init__.py +0 -0
  38. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/sources/base.py +0 -0
  39. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/sources/football_data_uk.py +0 -0
  40. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/sources/json_file.py +0 -0
  41. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/sources/openfootball.py +0 -0
  42. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/src/openmatchkit/sources/public_html.py +0 -0
  43. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/fixtures/sample_detailed_source.json +0 -0
  44. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/fixtures/sample_football_data.csv +0 -0
  45. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/fixtures/sample_openfootball.json +0 -0
  46. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_client.py +0 -0
  47. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_detailed_data.py +0 -0
  48. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_export.py +0 -0
  49. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_football_data_uk.py +0 -0
  50. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_http.py +0 -0
  51. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_models.py +0 -0
  52. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_openfootball.py +0 -0
  53. {openmatchkit-0.2.1 → openmatchkit-0.2.2}/tests/test_prediction.py +0 -0
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.2.2 - 2026-06-12
4
+
5
+ - Updated README and PyPI project description to use `pip install openmatchkit`.
6
+ - Added PyPI version badge.
7
+
3
8
  ## v0.2.1 - 2026-06-12
4
9
 
5
10
  - Added GitHub Actions trusted publishing workflow for PyPI.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openmatchkit
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Unofficial open-source football match data toolkit using public sources.
5
5
  Project-URL: Homepage, https://github.com/patilprashan246/openmatchkit
6
6
  Project-URL: Repository, https://github.com/patilprashan246/openmatchkit
@@ -36,6 +36,7 @@ Description-Content-Type: text/markdown
36
36
  # openmatchkit
37
37
 
38
38
  [![CI](https://github.com/patilprashan246/openmatchkit/actions/workflows/ci.yml/badge.svg)](https://github.com/patilprashan246/openmatchkit/actions/workflows/ci.yml)
39
+ [![PyPI](https://img.shields.io/pypi/v/openmatchkit)](https://pypi.org/project/openmatchkit/)
39
40
  [![Release](https://img.shields.io/github/v/release/patilprashan246/openmatchkit)](https://github.com/patilprashan246/openmatchkit/releases)
40
41
  [![Python](https://img.shields.io/badge/python-3.10%2B-blue)](pyproject.toml)
41
42
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
@@ -51,13 +52,13 @@ openmatchkit gives Python developers a clean, source-attributed way to work with
51
52
  ## Install
52
53
 
53
54
  ```bash
54
- pip install git+https://github.com/patilprashan246/openmatchkit.git
55
+ pip install openmatchkit
55
56
  ```
56
57
 
57
- For a pinned release:
58
+ From GitHub:
58
59
 
59
60
  ```bash
60
- pip install git+https://github.com/patilprashan246/openmatchkit.git@v0.2.1
61
+ pip install git+https://github.com/patilprashan246/openmatchkit.git@v0.2.2
61
62
  ```
62
63
 
63
64
  For local development:
@@ -1,6 +1,7 @@
1
1
  # openmatchkit
2
2
 
3
3
  [![CI](https://github.com/patilprashan246/openmatchkit/actions/workflows/ci.yml/badge.svg)](https://github.com/patilprashan246/openmatchkit/actions/workflows/ci.yml)
4
+ [![PyPI](https://img.shields.io/pypi/v/openmatchkit)](https://pypi.org/project/openmatchkit/)
4
5
  [![Release](https://img.shields.io/github/v/release/patilprashan246/openmatchkit)](https://github.com/patilprashan246/openmatchkit/releases)
5
6
  [![Python](https://img.shields.io/badge/python-3.10%2B-blue)](pyproject.toml)
6
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
@@ -16,13 +17,13 @@ openmatchkit gives Python developers a clean, source-attributed way to work with
16
17
  ## Install
17
18
 
18
19
  ```bash
19
- pip install git+https://github.com/patilprashan246/openmatchkit.git
20
+ pip install openmatchkit
20
21
  ```
21
22
 
22
- For a pinned release:
23
+ From GitHub:
23
24
 
24
25
  ```bash
25
- pip install git+https://github.com/patilprashan246/openmatchkit.git@v0.2.1
26
+ pip install git+https://github.com/patilprashan246/openmatchkit.git@v0.2.2
26
27
  ```
27
28
 
28
29
  For local development:
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "openmatchkit"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Unofficial open-source football match data toolkit using public sources."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -32,7 +32,7 @@ class SafeHttpClient:
32
32
  and never attempts to bypass login, CAPTCHA, paywalls, or other protections.
33
33
  """
34
34
 
35
- user_agent: str = "openmatchkit/0.2.1 (+https://github.com/patilprashan246/openmatchkit)"
35
+ user_agent: str = "openmatchkit/0.2.2 (+https://github.com/patilprashan246/openmatchkit)"
36
36
  min_delay_seconds: float = 2.0
37
37
  timeout_seconds: float = 20.0
38
38
  respect_robots: bool = True
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes