dbus-notifier 1.0.2__py2.py3-none-any.whl → 1.1.0__py2.py3-none-any.whl

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.
@@ -0,0 +1,136 @@
1
+ Metadata-Version: 2.4
2
+ Name: dbus-notifier
3
+ Version: 1.1.0
4
+ Summary: A small dbus notifier package
5
+ Author: Adam Bukolt
6
+ Author-email: Adam Bukolt <abukolt@gmx.com>
7
+ Project-URL: Homepage, https://github.com/adambmarsh/dbusnotify
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: annotated-types>=0.7.0
15
+ Requires-Dist: astroid>=4.0.0a0
16
+ Requires-Dist: attrs>=25.3.0
17
+ Requires-Dist: bleach>=6.2.0
18
+ Requires-Dist: build>=1.2.2.post1
19
+ Requires-Dist: certifi>=2025.7.14
20
+ Requires-Dist: cffi>=1.17.1
21
+ Requires-Dist: charset-normalizer>=3.4.2
22
+ Requires-Dist: check-wheel-contents>=0.6.2
23
+ Requires-Dist: click>=8.2.1
24
+ Requires-Dist: cryptography>=45.0.5
25
+ Requires-Dist: dbus-next>=0.2.3
26
+ Requires-Dist: dbus-python>=1.4.0
27
+ Requires-Dist: dbusnotify>=0.0.2
28
+ Requires-Dist: dill>=0.4.0
29
+ Requires-Dist: docutils>=0.22rc5
30
+ Requires-Dist: dotenv>=0.9.9
31
+ Requires-Dist: id>=1.5.0
32
+ Requires-Dist: idna>=3.10
33
+ Requires-Dist: importlib-metadata>=8.7.0
34
+ Requires-Dist: isort>=6.0.1
35
+ Requires-Dist: jaraco-classes>=3.4.0
36
+ Requires-Dist: jaraco-context>=6.0.1
37
+ Requires-Dist: jaraco-functools>=4.2.1
38
+ Requires-Dist: jeepney>=0.9.0
39
+ Requires-Dist: keyring>=25.6.0
40
+ Requires-Dist: markdown-it-py>=3.0.0
41
+ Requires-Dist: mccabe>=0.7.0
42
+ Requires-Dist: mdurl>=0.1.2
43
+ Requires-Dist: more-itertools>=10.7.0
44
+ Requires-Dist: nh3>=0.2.22
45
+ Requires-Dist: packaging>=25.0
46
+ Requires-Dist: pkginfo>=1.12.1.2
47
+ Requires-Dist: platformdirs>=4.3.8
48
+ Requires-Dist: pycodestyle>=2.14.0
49
+ Requires-Dist: pycparser>=2.22
50
+ Requires-Dist: pydantic>=2.11.7
51
+ Requires-Dist: pydantic-core>=2.33.2
52
+ Requires-Dist: pyflakes>=3.3.2
53
+ Requires-Dist: pygments>=2.19.1
54
+ Requires-Dist: pyproject-hooks>=1.2.0
55
+ Requires-Dist: python-dotenv>=1.1.0
56
+ Requires-Dist: readme-renderer>=44.0
57
+ Requires-Dist: requests>=2.32.4
58
+ Requires-Dist: requests-toolbelt>=1.0.0
59
+ Requires-Dist: rfc3986>=2.0.0
60
+ Requires-Dist: rich>=14.0.0
61
+ Requires-Dist: secretstorage>=3.3.3
62
+ Requires-Dist: setuptools>=80.9.0
63
+ Requires-Dist: six>=1.17.0
64
+ Requires-Dist: tomli>=2.2.1
65
+ Requires-Dist: tomlkit>=0.13.3
66
+ Requires-Dist: twine>=6.1.0
67
+ Requires-Dist: typing-extensions>=4.14.0
68
+ Requires-Dist: typing-inspection>=0.4.1
69
+ Requires-Dist: urllib3>=2.4.0
70
+ Requires-Dist: webencodings>=0.5.1
71
+ Requires-Dist: wheel-filename>=1.4.2
72
+ Requires-Dist: zipp>=3.23.0
73
+ Dynamic: author
74
+ Dynamic: license-file
75
+ Dynamic: requires-python
76
+
77
+ # dbus-notifier #
78
+
79
+ This library offers a simple means of generating dbus notifications on Linux.
80
+
81
+ ## Installation and Usage
82
+
83
+ Make sure at least Python 3.* is installed on the target Linux system.
84
+
85
+ Install virtualenv in which to install `dbus-notifier`.
86
+
87
+ In the virtual environment, run `pip3 install dbus-notifier`
88
+
89
+ In the Python code to use dbus-notifier:
90
+
91
+ ```commandline
92
+ from dbusnotifier.dbusnotifier import NotifySender
93
+
94
+ ```
95
+ The simplest code instantiating NotifySender and sending a dbus notification is this:
96
+
97
+ ```commandline
98
+ sender = NotifySender(title="My notifier")
99
+ ...
100
+ sender.notify(message="Hi!")
101
+ ```
102
+ The above code results in a single message "Hi!" being posting in the notification area.
103
+
104
+ A more complex scenario supported by dbus-notifier is to create a dictionary with a selection of messages, where each
105
+ key identifies a message. The code below illustrates this case:
106
+
107
+ ```
108
+ sender = NotifySender(title="My notifier", messages={'0': "Success", '1': "Failed"})
109
+
110
+ sender.notify(select_key='0')
111
+ ```
112
+
113
+
114
+ ## Dependencies
115
+
116
+ Please see `pyproject.toml`.
117
+
118
+ ## Status
119
+
120
+ Mar 2023 First draft, tested locally on Manjaro Linux.
121
+ Apr 2025 release.
122
+
123
+ ## Copyright
124
+
125
+ Copyright Adam Bukolt
126
+
127
+ Note that the copyright refers to the code and scripts in this repository and
128
+ expressly not to any third-party dependencies.
129
+
130
+ ## License
131
+
132
+ MIT
133
+
134
+ Icons included with this program were created by and are the sole property of the copyright holder.
135
+
136
+ Note that separate licenses apply to third-party dependencies.
@@ -1,10 +1,10 @@
1
1
  dbus_notifier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  dbus_notifier/notifysender.py,sha256=oRwb4nEpPOWAro2-2gDquItHXnul2O7iXCnICNgjloQ,2741
3
3
  dbus_notifier/icons/feather_on_grey.png,sha256=d3AL4ZgDeGeGVA8w_rsDMq44OqXLm38HM4wbmsbBBfQ,9566
4
- dbus_notifier-1.0.2.data/data/.env_dbus_notifier,sha256=98LpNZCFwtMk1soGOfOEF02pVH5PnF85XZ7fewoAIBg,58
5
- dbus_notifier-1.0.2.data/data/dbus_notifier/icons/feather_on_grey.png,sha256=d3AL4ZgDeGeGVA8w_rsDMq44OqXLm38HM4wbmsbBBfQ,9566
6
- dbus_notifier-1.0.2.dist-info/licenses/LICENSE,sha256=L1cs52IMCKn4dLji4fxcFqLkRkRdahfy-Lvl1lhlrxo,1068
7
- dbus_notifier-1.0.2.dist-info/METADATA,sha256=Cfql2PPDIPE2ErhX-IDSXqUoYzoJpPrCcWHUsqevEj4,4074
8
- dbus_notifier-1.0.2.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
9
- dbus_notifier-1.0.2.dist-info/top_level.txt,sha256=GLRbV7kVsCZ-MygBlXupUb5lHhkLSPSjPSpuMlI9EmM,14
10
- dbus_notifier-1.0.2.dist-info/RECORD,,
4
+ dbus_notifier-1.1.0.data/data/.env_dbus_notifier,sha256=98LpNZCFwtMk1soGOfOEF02pVH5PnF85XZ7fewoAIBg,58
5
+ dbus_notifier-1.1.0.data/data/dbus_notifier/icons/feather_on_grey.png,sha256=d3AL4ZgDeGeGVA8w_rsDMq44OqXLm38HM4wbmsbBBfQ,9566
6
+ dbus_notifier-1.1.0.dist-info/licenses/LICENSE,sha256=L1cs52IMCKn4dLji4fxcFqLkRkRdahfy-Lvl1lhlrxo,1068
7
+ dbus_notifier-1.1.0.dist-info/METADATA,sha256=JIjki9MthcHsqC1pmZphpCf5f_HUyIepVNOGEKzhf-Q,3978
8
+ dbus_notifier-1.1.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
9
+ dbus_notifier-1.1.0.dist-info/top_level.txt,sha256=GLRbV7kVsCZ-MygBlXupUb5lHhkLSPSjPSpuMlI9EmM,14
10
+ dbus_notifier-1.1.0.dist-info/RECORD,,
@@ -1,139 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dbus-notifier
3
- Version: 1.0.2
4
- Summary: A small dbus notifier package
5
- Author: Adam Bukolt
6
- Author-email: Adam Bukolt <abukolt@gmx.com>
7
- Project-URL: Homepage, https://github.com/adambmarsh/dbusnotify
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.10
12
- Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Requires-Dist: annotated-types==0.7.0
15
- Requires-Dist: astroid==3.3.10
16
- Requires-Dist: attrs==25.3.0
17
- Requires-Dist: bleach==6.2.0
18
- Requires-Dist: build==1.2.2.post1
19
- Requires-Dist: bump2version==1.0.2
20
- Requires-Dist: bumpversion==0.6.0
21
- Requires-Dist: certifi==2025.6.15
22
- Requires-Dist: cffi==1.17.1
23
- Requires-Dist: charset-normalizer==3.4.2
24
- Requires-Dist: check-wheel-contents==0.6.2
25
- Requires-Dist: click==8.2.1
26
- Requires-Dist: cryptography==45.0.4
27
- Requires-Dist: dbus-next==0.2.3
28
- Requires-Dist: dbus-python==1.4.0
29
- Requires-Dist: dbusnotify==0.0.2
30
- Requires-Dist: dill==0.4.0
31
- Requires-Dist: docutils==0.21.2
32
- Requires-Dist: dotenv==0.9.9
33
- Requires-Dist: id==1.5.0
34
- Requires-Dist: idna==3.10
35
- Requires-Dist: importlib-metadata==8.7.0
36
- Requires-Dist: isort==6.0.1
37
- Requires-Dist: jaraco-classes==3.4.0
38
- Requires-Dist: jaraco-context==6.0.1
39
- Requires-Dist: jaraco-functools==4.1.0
40
- Requires-Dist: jeepney==0.9.0
41
- Requires-Dist: keyring==25.6.0
42
- Requires-Dist: markdown-it-py==3.0.0
43
- Requires-Dist: mccabe==0.7.0
44
- Requires-Dist: mdurl==0.1.2
45
- Requires-Dist: more-itertools==10.7.0
46
- Requires-Dist: nh3==0.2.21
47
- Requires-Dist: packaging==25.0
48
- Requires-Dist: pkginfo==1.12.1.2
49
- Requires-Dist: platformdirs==4.3.8
50
- Requires-Dist: pycodestyle==2.13.0
51
- Requires-Dist: pycparser==2.22
52
- Requires-Dist: pydantic==2.11.7
53
- Requires-Dist: pydantic-core==2.33.2
54
- Requires-Dist: pyflakes==3.3.2
55
- Requires-Dist: pygments==2.19.1
56
- Requires-Dist: pylint==3.3.7
57
- Requires-Dist: pyproject-hooks==1.2.0
58
- Requires-Dist: python-dotenv==1.1.0
59
- Requires-Dist: readme-renderer==44.0
60
- Requires-Dist: requests==2.32.4
61
- Requires-Dist: requests-toolbelt==1.0.0
62
- Requires-Dist: rfc3986==2.0.0
63
- Requires-Dist: rich==14.0.0
64
- Requires-Dist: secretstorage==3.3.3
65
- Requires-Dist: setuptools==80.9.0
66
- Requires-Dist: six==1.17.0
67
- Requires-Dist: tomli==2.2.1
68
- Requires-Dist: tomlkit==0.13.3
69
- Requires-Dist: twine==6.1.0
70
- Requires-Dist: typing-extensions==4.14.0
71
- Requires-Dist: typing-inspection==0.4.1
72
- Requires-Dist: urllib3==2.4.0
73
- Requires-Dist: webencodings==0.5.1
74
- Requires-Dist: wheel-filename==1.4.2
75
- Requires-Dist: zipp==3.23.0
76
- Dynamic: author
77
- Dynamic: license-file
78
- Dynamic: requires-python
79
-
80
- # dbus-notifier #
81
-
82
- This library offers a simple means of generating dbus notifications on Linux.
83
-
84
- ## Installation and Usage
85
-
86
- Make sure at least Python 3.* is installed on the target Linux system.
87
-
88
- Install virtualenv in which to install `dbus-notifier`.
89
-
90
- In the virtual environment, run `pip3 install dbus-notifier`
91
-
92
- In the Python code to use dbus-notifier:
93
-
94
- ```commandline
95
- from dbusnotifier.dbusnotifier import NotifySender
96
-
97
- ```
98
- The simplest code instantiating NotifySender and sending a dbus notification is this:
99
-
100
- ```commandline
101
- sender = NotifySender(title="My notifier")
102
- ...
103
- sender.notify(message="Hi!")
104
- ```
105
- The above code results in a single message "Hi!" being posting in the notification area.
106
-
107
- A more complex scenario supported by dbus-notifier is to create a dictionary with a selection of messages, where each
108
- key identifies a message. The code below illustrates this case:
109
-
110
- ```
111
- sender = NotifySender(title="My notifier", messages={'0': "Success", '1': "Failed"})
112
-
113
- sender.notify(select_key='0')
114
- ```
115
-
116
-
117
- ## Dependencies
118
-
119
- Please see `pyproject.toml`.
120
-
121
- ## Status
122
-
123
- Mar 2023 First draft, tested locally on Manjaro Linux.
124
- Apr 2025 release.
125
-
126
- ## Copyright
127
-
128
- Copyright Adam Bukolt
129
-
130
- Note that the copyright refers to the code and scripts in this repository and
131
- expressly not to any third-party dependencies.
132
-
133
- ## License
134
-
135
- MIT
136
-
137
- Icons included with this program were created by and are the sole property of the copyright holder.
138
-
139
- Note that separate licenses apply to third-party dependencies.