python-ntfy 0.9.1__tar.gz → 0.10.0__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.
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/PKG-INFO +7 -23
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/README.md +2 -20
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/pyproject.toml +5 -6
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/__init__.py +0 -0
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/_exceptions.py +0 -0
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/_get_functions.py +0 -0
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/_ntfy.py +0 -0
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/_send_functions.py +0 -0
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/client.py +0 -0
- {python_ntfy-0.9.1 → python_ntfy-0.10.0}/python_ntfy/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-ntfy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: An easy-to-use library for the ntfy notification service.
|
|
5
5
|
Keywords: ntfy,notifications,push,http,api
|
|
6
6
|
Author: Matthew Cane
|
|
@@ -11,14 +11,16 @@ Classifier: Intended Audience :: Developers
|
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
19
|
Classifier: Topic :: Communications
|
|
18
20
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
19
21
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
22
|
Requires-Dist: requests>=2.31.0
|
|
21
|
-
Requires-Python: >=3.
|
|
23
|
+
Requires-Python: >=3.10
|
|
22
24
|
Project-URL: Changelog, https://github.com/matthewcane/python-ntfy/releases
|
|
23
25
|
Project-URL: Documentation, https://matthewcane.github.io/python-ntfy/
|
|
24
26
|
Project-URL: Homepage, https://github.com/matthewcane/python-ntfy
|
|
@@ -29,6 +31,7 @@ Description-Content-Type: text/markdown
|
|
|
29
31
|
# A Python Library For ntfy
|
|
30
32
|
|
|
31
33
|

|
|
34
|
+
[](https://pepy.tech/projects/python-ntfy)
|
|
32
35
|
[](https://pepy.tech/projects/python-ntfy)
|
|
33
36
|

|
|
34
37
|
|
|
@@ -72,23 +75,4 @@ See the full documentation at [https://matthewcane.github.io/python-ntfy/](https
|
|
|
72
75
|
|
|
73
76
|
## Contributing
|
|
74
77
|
|
|
75
|
-
We welcome contributions
|
|
76
|
-
|
|
77
|
-
### Prerequisites
|
|
78
|
-
|
|
79
|
-
Before contributing, you'll need to install these tools:
|
|
80
|
-
|
|
81
|
-
- **[uv](https://github.com/astral-sh/uv)** - Fast Python package manager and installer
|
|
82
|
-
- **[Just](https://github.com/casey/just)** - Command runner for project tasks
|
|
83
|
-
- **[Docker](https://www.docker.com/)** and **[Docker Compose](https://docs.docker.com/compose/)** - For running tests with ntfy servers
|
|
84
|
-
- **[Pre-commit](https://pre-commit.com/)** - Git hooks for code quality (optional but recommended)
|
|
85
|
-
|
|
86
|
-
### Development Steps
|
|
87
|
-
|
|
88
|
-
- Fork the repository and make your changes
|
|
89
|
-
- Run `just setup` to install the pre-commit hooks
|
|
90
|
-
- Run `just format` to format the code
|
|
91
|
-
- Run `just test` to run all the tests
|
|
92
|
-
- Create a pull request with detailed description of your changes
|
|
93
|
-
|
|
94
|
-
Thank you for contributing to python-ntfy! 🚀
|
|
78
|
+
We welcome contributions. Please see the full guidelines in [`CONTRIBUTING.md`](./CONTRIBUTING.md).
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# A Python Library For ntfy
|
|
2
2
|
|
|
3
3
|

|
|
4
|
+
[](https://pepy.tech/projects/python-ntfy)
|
|
4
5
|
[](https://pepy.tech/projects/python-ntfy)
|
|
5
6
|

|
|
6
7
|
|
|
@@ -44,23 +45,4 @@ See the full documentation at [https://matthewcane.github.io/python-ntfy/](https
|
|
|
44
45
|
|
|
45
46
|
## Contributing
|
|
46
47
|
|
|
47
|
-
We welcome contributions
|
|
48
|
-
|
|
49
|
-
### Prerequisites
|
|
50
|
-
|
|
51
|
-
Before contributing, you'll need to install these tools:
|
|
52
|
-
|
|
53
|
-
- **[uv](https://github.com/astral-sh/uv)** - Fast Python package manager and installer
|
|
54
|
-
- **[Just](https://github.com/casey/just)** - Command runner for project tasks
|
|
55
|
-
- **[Docker](https://www.docker.com/)** and **[Docker Compose](https://docs.docker.com/compose/)** - For running tests with ntfy servers
|
|
56
|
-
- **[Pre-commit](https://pre-commit.com/)** - Git hooks for code quality (optional but recommended)
|
|
57
|
-
|
|
58
|
-
### Development Steps
|
|
59
|
-
|
|
60
|
-
- Fork the repository and make your changes
|
|
61
|
-
- Run `just setup` to install the pre-commit hooks
|
|
62
|
-
- Run `just format` to format the code
|
|
63
|
-
- Run `just test` to run all the tests
|
|
64
|
-
- Create a pull request with detailed description of your changes
|
|
65
|
-
|
|
66
|
-
Thank you for contributing to python-ntfy! 🚀
|
|
48
|
+
We welcome contributions. Please see the full guidelines in [`CONTRIBUTING.md`](./CONTRIBUTING.md).
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "python-ntfy"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.10.0"
|
|
4
4
|
description = "An easy-to-use library for the ntfy notification service."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
7
|
-
requires-python = ">=3.
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
8
|
dependencies = ["requests>=2.31.0"]
|
|
9
9
|
classifiers = [
|
|
10
10
|
"Development Status :: 4 - Beta",
|
|
@@ -12,9 +12,11 @@ classifiers = [
|
|
|
12
12
|
"License :: OSI Approved :: MIT License",
|
|
13
13
|
"Operating System :: OS Independent",
|
|
14
14
|
"Programming Language :: Python :: 3",
|
|
15
|
+
"Programming Language :: Python :: 3.10",
|
|
16
|
+
"Programming Language :: Python :: 3.11",
|
|
15
17
|
"Programming Language :: Python :: 3.12",
|
|
16
18
|
"Programming Language :: Python :: 3.13",
|
|
17
|
-
"Programming Language :: Python :: 3
|
|
19
|
+
"Programming Language :: Python :: 3.14",
|
|
18
20
|
"Topic :: Communications",
|
|
19
21
|
"Topic :: Internet :: WWW/HTTP",
|
|
20
22
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
@@ -54,9 +56,6 @@ dev = [
|
|
|
54
56
|
"types-setuptools>=75.2.0.20241018,<81.0.0.0",
|
|
55
57
|
]
|
|
56
58
|
|
|
57
|
-
[tool.ruff]
|
|
58
|
-
target-version = "py312"
|
|
59
|
-
|
|
60
59
|
[tool.ruff.lint.isort]
|
|
61
60
|
combine-as-imports = true
|
|
62
61
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|