dbus-notifier 1.0.0__tar.gz → 1.0.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.
@@ -0,0 +1,139 @@
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.
@@ -42,6 +42,7 @@ Please see `pyproject.toml`.
42
42
  ## Status
43
43
 
44
44
  Mar 2023 First draft, tested locally on Manjaro Linux.
45
+ Apr 2025 release.
45
46
 
46
47
  ## Copyright
47
48
 
@@ -0,0 +1,139 @@
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.
@@ -0,0 +1,62 @@
1
+ annotated-types==0.7.0
2
+ astroid==3.3.10
3
+ attrs==25.3.0
4
+ bleach==6.2.0
5
+ build==1.2.2.post1
6
+ bump2version==1.0.2
7
+ bumpversion==0.6.0
8
+ certifi==2025.6.15
9
+ cffi==1.17.1
10
+ charset-normalizer==3.4.2
11
+ check-wheel-contents==0.6.2
12
+ click==8.2.1
13
+ cryptography==45.0.4
14
+ dbus-next==0.2.3
15
+ dbus-python==1.4.0
16
+ dbusnotify==0.0.2
17
+ dill==0.4.0
18
+ docutils==0.21.2
19
+ dotenv==0.9.9
20
+ id==1.5.0
21
+ idna==3.10
22
+ importlib-metadata==8.7.0
23
+ isort==6.0.1
24
+ jaraco-classes==3.4.0
25
+ jaraco-context==6.0.1
26
+ jaraco-functools==4.1.0
27
+ jeepney==0.9.0
28
+ keyring==25.6.0
29
+ markdown-it-py==3.0.0
30
+ mccabe==0.7.0
31
+ mdurl==0.1.2
32
+ more-itertools==10.7.0
33
+ nh3==0.2.21
34
+ packaging==25.0
35
+ pkginfo==1.12.1.2
36
+ platformdirs==4.3.8
37
+ pycodestyle==2.13.0
38
+ pycparser==2.22
39
+ pydantic==2.11.7
40
+ pydantic-core==2.33.2
41
+ pyflakes==3.3.2
42
+ pygments==2.19.1
43
+ pylint==3.3.7
44
+ pyproject-hooks==1.2.0
45
+ python-dotenv==1.1.0
46
+ readme-renderer==44.0
47
+ requests==2.32.4
48
+ requests-toolbelt==1.0.0
49
+ rfc3986==2.0.0
50
+ rich==14.0.0
51
+ secretstorage==3.3.3
52
+ setuptools==80.9.0
53
+ six==1.17.0
54
+ tomli==2.2.1
55
+ tomlkit==0.13.3
56
+ twine==6.1.0
57
+ typing-extensions==4.14.0
58
+ typing-inspection==0.4.1
59
+ urllib3==2.4.0
60
+ webencodings==0.5.1
61
+ wheel-filename==1.4.2
62
+ zipp==3.23.0
@@ -0,0 +1,85 @@
1
+ [build-system]
2
+ requires = ["setuptools>=67.3.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dbus-notifier"
7
+ version = "1.0.2"
8
+ authors = [
9
+ { name="Adam Bukolt", email="abukolt@gmx.com" },
10
+ ]
11
+ description = "A small dbus notifier package"
12
+ readme = "README.md"
13
+ requires-python = ">=3.10"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+ dependencies = [
20
+ "annotated-types==0.7.0",
21
+ "astroid==3.3.10",
22
+ "attrs==25.3.0",
23
+ "bleach==6.2.0",
24
+ "build==1.2.2.post1",
25
+ "bump2version==1.0.2",
26
+ "bumpversion==0.6.0",
27
+ "certifi==2025.6.15",
28
+ "cffi==1.17.1",
29
+ "charset-normalizer==3.4.2",
30
+ "check-wheel-contents==0.6.2",
31
+ "click==8.2.1",
32
+ "cryptography==45.0.4",
33
+ "dbus-next==0.2.3",
34
+ "dbus-python==1.4.0",
35
+ "dbusnotify==0.0.2",
36
+ "dill==0.4.0",
37
+ "docutils==0.21.2",
38
+ "dotenv==0.9.9",
39
+ "id==1.5.0",
40
+ "idna==3.10",
41
+ "importlib-metadata==8.7.0",
42
+ "isort==6.0.1",
43
+ "jaraco-classes==3.4.0",
44
+ "jaraco-context==6.0.1",
45
+ "jaraco-functools==4.1.0",
46
+ "jeepney==0.9.0",
47
+ "keyring==25.6.0",
48
+ "markdown-it-py==3.0.0",
49
+ "mccabe==0.7.0",
50
+ "mdurl==0.1.2",
51
+ "more-itertools==10.7.0",
52
+ "nh3==0.2.21",
53
+ "packaging==25.0",
54
+ "pkginfo==1.12.1.2",
55
+ "platformdirs==4.3.8",
56
+ "pycodestyle==2.13.0",
57
+ "pycparser==2.22",
58
+ "pydantic==2.11.7",
59
+ "pydantic-core==2.33.2",
60
+ "pyflakes==3.3.2",
61
+ "pygments==2.19.1",
62
+ "pylint==3.3.7",
63
+ "pyproject-hooks==1.2.0",
64
+ "python-dotenv==1.1.0",
65
+ "readme-renderer==44.0",
66
+ "requests==2.32.4",
67
+ "requests-toolbelt==1.0.0",
68
+ "rfc3986==2.0.0",
69
+ "rich==14.0.0",
70
+ "secretstorage==3.3.3",
71
+ "setuptools==80.9.0",
72
+ "six==1.17.0",
73
+ "tomli==2.2.1",
74
+ "tomlkit==0.13.3",
75
+ "twine==6.1.0",
76
+ "typing-extensions==4.14.0",
77
+ "typing-inspection==0.4.1",
78
+ "urllib3==2.4.0",
79
+ "webencodings==0.5.1",
80
+ "wheel-filename==1.4.2",
81
+ "zipp==3.23.0",
82
+ ]
83
+
84
+ [project.urls]
85
+ "Homepage" = "https://github.com/adambmarsh/dbusnotify"
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.0.0
2
+ current_version = 1.0.2
3
3
  commit = False
4
4
  tag = False
5
5
 
@@ -8,12 +8,12 @@ requirements = [
8
8
  'dbus-next==0.2.3',
9
9
  'dbus-python==1.3.2',
10
10
  'dbusnotify==0.0.2',
11
- 'python-dotenv==1.0.0'
11
+ 'python-dotenv==1.0.2'
12
12
  ]
13
13
 
14
14
  setuptools.setup(
15
15
  name="dbus_notifier",
16
- version="1.0.0",
16
+ version="1.0.2",
17
17
  author="Adam Bukolt",
18
18
  author_email="abukolt@gmx.com",
19
19
  description="Package to post dbus notifications on Linux",
@@ -1,133 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dbus-notifier
3
- Version: 1.0.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.6.0
15
- Requires-Dist: astroid>=3.1.0
16
- Requires-Dist: attrs>=23.2.0
17
- Requires-Dist: bleach>=6.1.0
18
- Requires-Dist: build>=1.1.1
19
- Requires-Dist: certifi>=2024.2.2
20
- Requires-Dist: cffi>=1.16.0
21
- Requires-Dist: charset-normalizer>=3.3.2
22
- Requires-Dist: check-wheel-contents>=0.6.0
23
- Requires-Dist: click>=8.1.7
24
- Requires-Dist: cryptography>=42.0.5
25
- Requires-Dist: dbus-next>=0.2.3
26
- Requires-Dist: dbus-python>=1.3.2
27
- Requires-Dist: dbusnotify>=0.0.2
28
- Requires-Dist: dill>=0.3.8
29
- Requires-Dist: docutils>=0.20.1
30
- Requires-Dist: idna>=3.6
31
- Requires-Dist: importlib-metadata>=7.1.0
32
- Requires-Dist: isort>=5.13.2
33
- Requires-Dist: jaraco-classes>=3.3.1
34
- Requires-Dist: jaraco-context>=4.3.0
35
- Requires-Dist: jaraco-functools>=4.0.0
36
- Requires-Dist: jeepney>=0.8.0
37
- Requires-Dist: keyring>=25.0.0
38
- Requires-Dist: markdown-it-py>=3.0.0
39
- Requires-Dist: mccabe>=0.7.0
40
- Requires-Dist: mdurl>=0.1.2
41
- Requires-Dist: more-itertools>=11.0.0
42
- Requires-Dist: nh3>=1.0.07
43
- Requires-Dist: packaging>=24.0
44
- Requires-Dist: pkginfo>=1.10.0
45
- Requires-Dist: platformdirs>=4.2.0
46
- Requires-Dist: pycodestyle>=2.11.1
47
- Requires-Dist: pycparser>=2.21
48
- Requires-Dist: pydantic>=2.6.4
49
- Requires-Dist: pydantic-core>=2.17.0
50
- Requires-Dist: pyflakes>=3.2.0
51
- Requires-Dist: pygments>=2.17.2
52
- Requires-Dist: pylint>=3.1.0
53
- Requires-Dist: pyproject-hooks>=1.0.0
54
- Requires-Dist: python-dotenv>=1.0.1
55
- Requires-Dist: readme-renderer>=43.0
56
- Requires-Dist: requests>=2.31.0
57
- Requires-Dist: requests-toolbelt>=1.0.0
58
- Requires-Dist: rfc3986>=2.0.0
59
- Requires-Dist: rich>=13.7.1
60
- Requires-Dist: secretstorage>=3.3.3
61
- Requires-Dist: setuptools>=80.9.0
62
- Requires-Dist: six>=1.16.0
63
- Requires-Dist: tomli>=2.0.1
64
- Requires-Dist: tomlkit>=0.12.4
65
- Requires-Dist: twine>=5.0.0
66
- Requires-Dist: typing-extensions>=4.10.0
67
- Requires-Dist: urllib3>=2.2.1
68
- Requires-Dist: webencodings>=0.5.1
69
- Requires-Dist: wheel-filename>=1.4.1
70
- Requires-Dist: zipp>=3.18.1
71
- Dynamic: author
72
- Dynamic: license-file
73
- Dynamic: requires-python
74
-
75
- # dbus-notifier #
76
-
77
- This library offers a simple means of generating dbus notifications on Linux.
78
-
79
- ## Installation and Usage
80
-
81
- Make sure at least Python 3.* is installed on the target Linux system.
82
-
83
- Install virtualenv in which to install `dbus-notifier`.
84
-
85
- In the virtual environment, run `pip3 install dbus-notifier`
86
-
87
- In the Python code to use dbus-notifier:
88
-
89
- ```commandline
90
- from dbusnotifier.dbusnotifier import NotifySender
91
-
92
- ```
93
- The simplest code instantiating NotifySender and sending a dbus notification is this:
94
-
95
- ```commandline
96
- sender = NotifySender(title="My notifier")
97
- ...
98
- sender.notify(message="Hi!")
99
- ```
100
- The above code results in a single message "Hi!" being posting in the notification area.
101
-
102
- A more complex scenario supported by dbus-notifier is to create a dictionary with a selection of messages, where each
103
- key identifies a message. The code below illustrates this case:
104
-
105
- ```
106
- sender = NotifySender(title="My notifier", messages={'0': "Success", '1': "Failed"})
107
-
108
- sender.notify(select_key='0')
109
- ```
110
-
111
-
112
- ## Dependencies
113
-
114
- Please see `pyproject.toml`.
115
-
116
- ## Status
117
-
118
- Mar 2023 First draft, tested locally on Manjaro Linux.
119
-
120
- ## Copyright
121
-
122
- Copyright Adam Bukolt
123
-
124
- Note that the copyright refers to the code and scripts in this repository and
125
- expressly not to any third-party dependencies.
126
-
127
- ## License
128
-
129
- MIT
130
-
131
- Icons included with this program were created by and are the sole property of the copyright holder.
132
-
133
- Note that separate licenses apply to third-party dependencies.
@@ -1,133 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dbus-notifier
3
- Version: 1.0.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.6.0
15
- Requires-Dist: astroid>=3.1.0
16
- Requires-Dist: attrs>=23.2.0
17
- Requires-Dist: bleach>=6.1.0
18
- Requires-Dist: build>=1.1.1
19
- Requires-Dist: certifi>=2024.2.2
20
- Requires-Dist: cffi>=1.16.0
21
- Requires-Dist: charset-normalizer>=3.3.2
22
- Requires-Dist: check-wheel-contents>=0.6.0
23
- Requires-Dist: click>=8.1.7
24
- Requires-Dist: cryptography>=42.0.5
25
- Requires-Dist: dbus-next>=0.2.3
26
- Requires-Dist: dbus-python>=1.3.2
27
- Requires-Dist: dbusnotify>=0.0.2
28
- Requires-Dist: dill>=0.3.8
29
- Requires-Dist: docutils>=0.20.1
30
- Requires-Dist: idna>=3.6
31
- Requires-Dist: importlib-metadata>=7.1.0
32
- Requires-Dist: isort>=5.13.2
33
- Requires-Dist: jaraco-classes>=3.3.1
34
- Requires-Dist: jaraco-context>=4.3.0
35
- Requires-Dist: jaraco-functools>=4.0.0
36
- Requires-Dist: jeepney>=0.8.0
37
- Requires-Dist: keyring>=25.0.0
38
- Requires-Dist: markdown-it-py>=3.0.0
39
- Requires-Dist: mccabe>=0.7.0
40
- Requires-Dist: mdurl>=0.1.2
41
- Requires-Dist: more-itertools>=11.0.0
42
- Requires-Dist: nh3>=1.0.07
43
- Requires-Dist: packaging>=24.0
44
- Requires-Dist: pkginfo>=1.10.0
45
- Requires-Dist: platformdirs>=4.2.0
46
- Requires-Dist: pycodestyle>=2.11.1
47
- Requires-Dist: pycparser>=2.21
48
- Requires-Dist: pydantic>=2.6.4
49
- Requires-Dist: pydantic-core>=2.17.0
50
- Requires-Dist: pyflakes>=3.2.0
51
- Requires-Dist: pygments>=2.17.2
52
- Requires-Dist: pylint>=3.1.0
53
- Requires-Dist: pyproject-hooks>=1.0.0
54
- Requires-Dist: python-dotenv>=1.0.1
55
- Requires-Dist: readme-renderer>=43.0
56
- Requires-Dist: requests>=2.31.0
57
- Requires-Dist: requests-toolbelt>=1.0.0
58
- Requires-Dist: rfc3986>=2.0.0
59
- Requires-Dist: rich>=13.7.1
60
- Requires-Dist: secretstorage>=3.3.3
61
- Requires-Dist: setuptools>=80.9.0
62
- Requires-Dist: six>=1.16.0
63
- Requires-Dist: tomli>=2.0.1
64
- Requires-Dist: tomlkit>=0.12.4
65
- Requires-Dist: twine>=5.0.0
66
- Requires-Dist: typing-extensions>=4.10.0
67
- Requires-Dist: urllib3>=2.2.1
68
- Requires-Dist: webencodings>=0.5.1
69
- Requires-Dist: wheel-filename>=1.4.1
70
- Requires-Dist: zipp>=3.18.1
71
- Dynamic: author
72
- Dynamic: license-file
73
- Dynamic: requires-python
74
-
75
- # dbus-notifier #
76
-
77
- This library offers a simple means of generating dbus notifications on Linux.
78
-
79
- ## Installation and Usage
80
-
81
- Make sure at least Python 3.* is installed on the target Linux system.
82
-
83
- Install virtualenv in which to install `dbus-notifier`.
84
-
85
- In the virtual environment, run `pip3 install dbus-notifier`
86
-
87
- In the Python code to use dbus-notifier:
88
-
89
- ```commandline
90
- from dbusnotifier.dbusnotifier import NotifySender
91
-
92
- ```
93
- The simplest code instantiating NotifySender and sending a dbus notification is this:
94
-
95
- ```commandline
96
- sender = NotifySender(title="My notifier")
97
- ...
98
- sender.notify(message="Hi!")
99
- ```
100
- The above code results in a single message "Hi!" being posting in the notification area.
101
-
102
- A more complex scenario supported by dbus-notifier is to create a dictionary with a selection of messages, where each
103
- key identifies a message. The code below illustrates this case:
104
-
105
- ```
106
- sender = NotifySender(title="My notifier", messages={'0': "Success", '1': "Failed"})
107
-
108
- sender.notify(select_key='0')
109
- ```
110
-
111
-
112
- ## Dependencies
113
-
114
- Please see `pyproject.toml`.
115
-
116
- ## Status
117
-
118
- Mar 2023 First draft, tested locally on Manjaro Linux.
119
-
120
- ## Copyright
121
-
122
- Copyright Adam Bukolt
123
-
124
- Note that the copyright refers to the code and scripts in this repository and
125
- expressly not to any third-party dependencies.
126
-
127
- ## License
128
-
129
- MIT
130
-
131
- Icons included with this program were created by and are the sole property of the copyright holder.
132
-
133
- Note that separate licenses apply to third-party dependencies.
@@ -1,57 +0,0 @@
1
- annotated-types>=0.6.0
2
- astroid>=3.1.0
3
- attrs>=23.2.0
4
- bleach>=6.1.0
5
- build>=1.1.1
6
- certifi>=2024.2.2
7
- cffi>=1.16.0
8
- charset-normalizer>=3.3.2
9
- check-wheel-contents>=0.6.0
10
- click>=8.1.7
11
- cryptography>=42.0.5
12
- dbus-next>=0.2.3
13
- dbus-python>=1.3.2
14
- dbusnotify>=0.0.2
15
- dill>=0.3.8
16
- docutils>=0.20.1
17
- idna>=3.6
18
- importlib-metadata>=7.1.0
19
- isort>=5.13.2
20
- jaraco-classes>=3.3.1
21
- jaraco-context>=4.3.0
22
- jaraco-functools>=4.0.0
23
- jeepney>=0.8.0
24
- keyring>=25.0.0
25
- markdown-it-py>=3.0.0
26
- mccabe>=0.7.0
27
- mdurl>=0.1.2
28
- more-itertools>=11.0.0
29
- nh3>=1.0.07
30
- packaging>=24.0
31
- pkginfo>=1.10.0
32
- platformdirs>=4.2.0
33
- pycodestyle>=2.11.1
34
- pycparser>=2.21
35
- pydantic>=2.6.4
36
- pydantic-core>=2.17.0
37
- pyflakes>=3.2.0
38
- pygments>=2.17.2
39
- pylint>=3.1.0
40
- pyproject-hooks>=1.0.0
41
- python-dotenv>=1.0.1
42
- readme-renderer>=43.0
43
- requests>=2.31.0
44
- requests-toolbelt>=1.0.0
45
- rfc3986>=2.0.0
46
- rich>=13.7.1
47
- secretstorage>=3.3.3
48
- setuptools>=80.9.0
49
- six>=1.16.0
50
- tomli>=2.0.1
51
- tomlkit>=0.12.4
52
- twine>=5.0.0
53
- typing-extensions>=4.10.0
54
- urllib3>=2.2.1
55
- webencodings>=0.5.1
56
- wheel-filename>=1.4.1
57
- zipp>=3.18.1
@@ -1,80 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=67.3.3"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "dbus-notifier"
7
- version = "1.0.0"
8
- authors = [
9
- { name="Adam Bukolt", email="abukolt@gmx.com" },
10
- ]
11
- description = "A small dbus notifier package"
12
- readme = "README.md"
13
- requires-python = ">=3.10"
14
- classifiers = [
15
- "Programming Language :: Python :: 3",
16
- "License :: OSI Approved :: MIT License",
17
- "Operating System :: OS Independent",
18
- ]
19
- dependencies = [
20
- "annotated-types>=0.6.0",
21
- "astroid>=3.1.0",
22
- "attrs>=23.2.0",
23
- "bleach>=6.1.0",
24
- "build>=1.1.1",
25
- "certifi>=2024.2.2",
26
- "cffi>=1.16.0",
27
- "charset-normalizer>=3.3.2",
28
- "check-wheel-contents>=0.6.0",
29
- "click>=8.1.7",
30
- "cryptography>=42.0.5",
31
- "dbus-next>=0.2.3",
32
- "dbus-python>=1.3.2",
33
- "dbusnotify>=0.0.2",
34
- "dill>=0.3.8",
35
- "docutils>=0.20.1",
36
- "idna>=3.6",
37
- "importlib-metadata>=7.1.0",
38
- "isort>=5.13.2",
39
- "jaraco-classes>=3.3.1",
40
- "jaraco-context>=4.3.0",
41
- "jaraco-functools>=4.0.0",
42
- "jeepney>=0.8.0",
43
- "keyring>=25.0.0",
44
- "markdown-it-py>=3.0.0",
45
- "mccabe>=0.7.0",
46
- "mdurl>=0.1.2",
47
- "more-itertools>=11.0.0",
48
- "nh3>=1.0.07",
49
- "packaging>=24.0",
50
- "pkginfo>=1.10.0",
51
- "platformdirs>=4.2.0",
52
- "pycodestyle>=2.11.1",
53
- "pycparser>=2.21",
54
- "pydantic>=2.6.4",
55
- "pydantic-core>=2.17.0",
56
- "pyflakes>=3.2.0",
57
- "pygments>=2.17.2",
58
- "pylint>=3.1.0",
59
- "pyproject-hooks>=1.0.0",
60
- "python-dotenv>=1.0.1",
61
- "readme-renderer>=43.0",
62
- "requests>=2.31.0",
63
- "requests-toolbelt>=1.0.0",
64
- "rfc3986>=2.0.0",
65
- "rich>=13.7.1",
66
- "secretstorage>=3.3.3",
67
- "setuptools>=80.9.0",
68
- "six>=1.16.0",
69
- "tomli>=2.0.1",
70
- "tomlkit>=0.12.4",
71
- "twine>=5.0.0",
72
- "typing-extensions>=4.10.0",
73
- "urllib3>=2.2.1",
74
- "webencodings>=0.5.1",
75
- "wheel-filename>=1.4.1",
76
- "zipp>=3.18.1",
77
- ]
78
-
79
- [project.urls]
80
- "Homepage" = "https://github.com/adambmarsh/dbusnotify"
File without changes