android-notify 1.24.1__tar.gz → 1.24.3__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.
Potentially problematic release.
This version of android-notify might be problematic. Click here for more details.
- {android_notify-1.24.1 → android_notify-1.24.3}/PKG-INFO +42 -25
- {android_notify-1.24.1 → android_notify-1.24.3}/README.md +41 -24
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify.egg-info/PKG-INFO +42 -25
- {android_notify-1.24.1 → android_notify-1.24.3}/setup.py +1 -1
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify/__init__.py +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify/__main__.py +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify/_dev.py +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify/advanced_dev.py +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify/core.py +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify/styles.py +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify.egg-info/SOURCES.txt +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify.egg-info/dependency_links.txt +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify.egg-info/requires.txt +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/android_notify.egg-info/top_level.txt +0 -0
- {android_notify-1.24.1 → android_notify-1.24.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.24.
|
|
3
|
+
Version: 1.24.3
|
|
4
4
|
Summary: A Python package that simpilfies creating Android Post notifications using PyJNIus in Kivy apps.
|
|
5
5
|
Home-page: https://github.com/fector101/android-notify
|
|
6
6
|
Author: Fabian
|
|
@@ -81,8 +81,7 @@ send_notification("Hello", "This is a basic notification.")
|
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
**Example Image:**
|
|
84
|
-

|
|
86
85
|
#### Notification with an Image (Big Picture Style)
|
|
87
86
|
|
|
88
87
|
```python
|
|
@@ -95,8 +94,22 @@ send_notification(
|
|
|
95
94
|
)
|
|
96
95
|
```
|
|
97
96
|
|
|
97
|
+
**Example Image:**
|
|
98
|
+

|
|
99
|
+
#### Notification with an Image (Large Icon Style)
|
|
100
|
+
|
|
101
|
+
```python
|
|
102
|
+
# Send a notification with Large Icon
|
|
103
|
+
send_notification(
|
|
104
|
+
title='Completed download',
|
|
105
|
+
message='profile.jpg',
|
|
106
|
+
style='large_icon',
|
|
107
|
+
img_path='assets/imgs/icon.png'
|
|
108
|
+
)
|
|
109
|
+
```
|
|
110
|
+
|
|
98
111
|
**Example Image:**
|
|
99
|
-

|
|
100
113
|
|
|
101
114
|
#### Inbox Notification Style
|
|
102
115
|
|
|
@@ -109,11 +122,13 @@ send_notification(
|
|
|
109
122
|
)
|
|
110
123
|
```
|
|
111
124
|
|
|
112
|
-
**Example Image:**
|
|
113
|
-

|
|
114
127
|
|
|
115
128
|
#### Big Text Notification
|
|
116
129
|
|
|
130
|
+
- (This will default to normal text if big text unsupported on device)
|
|
131
|
+
|
|
117
132
|
```python
|
|
118
133
|
# Send a Big Text notification
|
|
119
134
|
send_notification(
|
|
@@ -122,28 +137,41 @@ send_notification(
|
|
|
122
137
|
style='big_text'
|
|
123
138
|
)
|
|
124
139
|
```
|
|
125
|
-
|
|
140
|
+
<!--
|
|
126
141
|
**Example Image:**
|
|
127
|
-
 -->
|
|
128
143
|
|
|
129
144
|
---
|
|
130
145
|
|
|
131
|
-
###
|
|
146
|
+
### Advanced Usage
|
|
147
|
+
|
|
148
|
+
#### Channel Name (channel_name)
|
|
132
149
|
|
|
133
150
|
- Can be found in App Settings where user can turn on/off specific Notifications
|
|
134
151
|
|
|
135
152
|
```python
|
|
136
|
-
#
|
|
137
|
-
# In later version channel_id will be used to reference notification
|
|
153
|
+
# if not specified Channel Name default's to "Default Channel"
|
|
138
154
|
send_notification(
|
|
139
155
|
title="Download finished"
|
|
140
156
|
message="How to Catch a Fish.mp4"
|
|
141
|
-
channel_name="
|
|
157
|
+
channel_name="Download Notifications"
|
|
142
158
|
)
|
|
143
159
|
```
|
|
144
160
|
|
|
145
161
|
**Sample Image:**
|
|
146
|
-

|
|
162
|
+

|
|
163
|
+
|
|
164
|
+
#### Channel Name (channel_id)
|
|
165
|
+
|
|
166
|
+
You can customize notification channels for different types of notifications.(In later version channel_id will be used to reference notification)
|
|
167
|
+
|
|
168
|
+
```python
|
|
169
|
+
send_notification(
|
|
170
|
+
title='Custom Channel Notification',
|
|
171
|
+
message='This uses a custom notification channel.',
|
|
172
|
+
channel_id='custom_channel'
|
|
173
|
+
)
|
|
174
|
+
```
|
|
147
175
|
|
|
148
176
|
---
|
|
149
177
|
|
|
@@ -229,18 +257,6 @@ uri = get_image_uri('assets/imgs/icon.png')
|
|
|
229
257
|
|
|
230
258
|
Returns - notification id
|
|
231
259
|
|
|
232
|
-
### Advanced Usage
|
|
233
|
-
|
|
234
|
-
You can customize notification channels for different types of notifications.
|
|
235
|
-
|
|
236
|
-
```python
|
|
237
|
-
send_notification(
|
|
238
|
-
title='Custom Channel Notification',
|
|
239
|
-
message='This uses a custom notification channel.',
|
|
240
|
-
channel_id='custom_channel'
|
|
241
|
-
)
|
|
242
|
-
```
|
|
243
|
-
|
|
244
260
|
## Contribution
|
|
245
261
|
|
|
246
262
|
Feel free to open issues or submit pull requests for improvements!
|
|
@@ -271,6 +287,7 @@ If you find this project helpful, consider buying me a coffee! Or Giving it a st
|
|
|
271
287
|
|
|
272
288
|
## Acknowledgments
|
|
273
289
|
|
|
290
|
+
- This Project was "Made For Android" and thoroughly "Tested by" the [Laner Project](https://github.com/Fector101/Laner/) - Laner is an application that creates a secure connection between your PC and Phone to Transfer Files Wirelessly.
|
|
274
291
|
- Thanks to the Kivy and Pyjnius communities for their support.
|
|
275
292
|
|
|
276
293
|
---
|
|
@@ -57,8 +57,7 @@ send_notification("Hello", "This is a basic notification.")
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
**Example Image:**
|
|
60
|
-

|
|
62
61
|
#### Notification with an Image (Big Picture Style)
|
|
63
62
|
|
|
64
63
|
```python
|
|
@@ -71,8 +70,22 @@ send_notification(
|
|
|
71
70
|
)
|
|
72
71
|
```
|
|
73
72
|
|
|
73
|
+
**Example Image:**
|
|
74
|
+

|
|
75
|
+
#### Notification with an Image (Large Icon Style)
|
|
76
|
+
|
|
77
|
+
```python
|
|
78
|
+
# Send a notification with Large Icon
|
|
79
|
+
send_notification(
|
|
80
|
+
title='Completed download',
|
|
81
|
+
message='profile.jpg',
|
|
82
|
+
style='large_icon',
|
|
83
|
+
img_path='assets/imgs/icon.png'
|
|
84
|
+
)
|
|
85
|
+
```
|
|
86
|
+
|
|
74
87
|
**Example Image:**
|
|
75
|
-

|
|
76
89
|
|
|
77
90
|
#### Inbox Notification Style
|
|
78
91
|
|
|
@@ -85,11 +98,13 @@ send_notification(
|
|
|
85
98
|
)
|
|
86
99
|
```
|
|
87
100
|
|
|
88
|
-
**Example Image:**
|
|
89
|
-

|
|
90
103
|
|
|
91
104
|
#### Big Text Notification
|
|
92
105
|
|
|
106
|
+
- (This will default to normal text if big text unsupported on device)
|
|
107
|
+
|
|
93
108
|
```python
|
|
94
109
|
# Send a Big Text notification
|
|
95
110
|
send_notification(
|
|
@@ -98,28 +113,41 @@ send_notification(
|
|
|
98
113
|
style='big_text'
|
|
99
114
|
)
|
|
100
115
|
```
|
|
101
|
-
|
|
116
|
+
<!--
|
|
102
117
|
**Example Image:**
|
|
103
|
-
 -->
|
|
104
119
|
|
|
105
120
|
---
|
|
106
121
|
|
|
107
|
-
###
|
|
122
|
+
### Advanced Usage
|
|
123
|
+
|
|
124
|
+
#### Channel Name (channel_name)
|
|
108
125
|
|
|
109
126
|
- Can be found in App Settings where user can turn on/off specific Notifications
|
|
110
127
|
|
|
111
128
|
```python
|
|
112
|
-
#
|
|
113
|
-
# In later version channel_id will be used to reference notification
|
|
129
|
+
# if not specified Channel Name default's to "Default Channel"
|
|
114
130
|
send_notification(
|
|
115
131
|
title="Download finished"
|
|
116
132
|
message="How to Catch a Fish.mp4"
|
|
117
|
-
channel_name="
|
|
133
|
+
channel_name="Download Notifications"
|
|
118
134
|
)
|
|
119
135
|
```
|
|
120
136
|
|
|
121
137
|
**Sample Image:**
|
|
122
|
-

|
|
138
|
+

|
|
139
|
+
|
|
140
|
+
#### Channel Name (channel_id)
|
|
141
|
+
|
|
142
|
+
You can customize notification channels for different types of notifications.(In later version channel_id will be used to reference notification)
|
|
143
|
+
|
|
144
|
+
```python
|
|
145
|
+
send_notification(
|
|
146
|
+
title='Custom Channel Notification',
|
|
147
|
+
message='This uses a custom notification channel.',
|
|
148
|
+
channel_id='custom_channel'
|
|
149
|
+
)
|
|
150
|
+
```
|
|
123
151
|
|
|
124
152
|
---
|
|
125
153
|
|
|
@@ -205,18 +233,6 @@ uri = get_image_uri('assets/imgs/icon.png')
|
|
|
205
233
|
|
|
206
234
|
Returns - notification id
|
|
207
235
|
|
|
208
|
-
### Advanced Usage
|
|
209
|
-
|
|
210
|
-
You can customize notification channels for different types of notifications.
|
|
211
|
-
|
|
212
|
-
```python
|
|
213
|
-
send_notification(
|
|
214
|
-
title='Custom Channel Notification',
|
|
215
|
-
message='This uses a custom notification channel.',
|
|
216
|
-
channel_id='custom_channel'
|
|
217
|
-
)
|
|
218
|
-
```
|
|
219
|
-
|
|
220
236
|
## Contribution
|
|
221
237
|
|
|
222
238
|
Feel free to open issues or submit pull requests for improvements!
|
|
@@ -247,6 +263,7 @@ If you find this project helpful, consider buying me a coffee! Or Giving it a st
|
|
|
247
263
|
|
|
248
264
|
## Acknowledgments
|
|
249
265
|
|
|
266
|
+
- This Project was "Made For Android" and thoroughly "Tested by" the [Laner Project](https://github.com/Fector101/Laner/) - Laner is an application that creates a secure connection between your PC and Phone to Transfer Files Wirelessly.
|
|
250
267
|
- Thanks to the Kivy and Pyjnius communities for their support.
|
|
251
268
|
|
|
252
269
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.24.
|
|
3
|
+
Version: 1.24.3
|
|
4
4
|
Summary: A Python package that simpilfies creating Android Post notifications using PyJNIus in Kivy apps.
|
|
5
5
|
Home-page: https://github.com/fector101/android-notify
|
|
6
6
|
Author: Fabian
|
|
@@ -81,8 +81,7 @@ send_notification("Hello", "This is a basic notification.")
|
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
**Example Image:**
|
|
84
|
-

|
|
86
85
|
#### Notification with an Image (Big Picture Style)
|
|
87
86
|
|
|
88
87
|
```python
|
|
@@ -95,8 +94,22 @@ send_notification(
|
|
|
95
94
|
)
|
|
96
95
|
```
|
|
97
96
|
|
|
97
|
+
**Example Image:**
|
|
98
|
+

|
|
99
|
+
#### Notification with an Image (Large Icon Style)
|
|
100
|
+
|
|
101
|
+
```python
|
|
102
|
+
# Send a notification with Large Icon
|
|
103
|
+
send_notification(
|
|
104
|
+
title='Completed download',
|
|
105
|
+
message='profile.jpg',
|
|
106
|
+
style='large_icon',
|
|
107
|
+
img_path='assets/imgs/icon.png'
|
|
108
|
+
)
|
|
109
|
+
```
|
|
110
|
+
|
|
98
111
|
**Example Image:**
|
|
99
|
-

|
|
100
113
|
|
|
101
114
|
#### Inbox Notification Style
|
|
102
115
|
|
|
@@ -109,11 +122,13 @@ send_notification(
|
|
|
109
122
|
)
|
|
110
123
|
```
|
|
111
124
|
|
|
112
|
-
**Example Image:**
|
|
113
|
-

|
|
114
127
|
|
|
115
128
|
#### Big Text Notification
|
|
116
129
|
|
|
130
|
+
- (This will default to normal text if big text unsupported on device)
|
|
131
|
+
|
|
117
132
|
```python
|
|
118
133
|
# Send a Big Text notification
|
|
119
134
|
send_notification(
|
|
@@ -122,28 +137,41 @@ send_notification(
|
|
|
122
137
|
style='big_text'
|
|
123
138
|
)
|
|
124
139
|
```
|
|
125
|
-
|
|
140
|
+
<!--
|
|
126
141
|
**Example Image:**
|
|
127
|
-
 -->
|
|
128
143
|
|
|
129
144
|
---
|
|
130
145
|
|
|
131
|
-
###
|
|
146
|
+
### Advanced Usage
|
|
147
|
+
|
|
148
|
+
#### Channel Name (channel_name)
|
|
132
149
|
|
|
133
150
|
- Can be found in App Settings where user can turn on/off specific Notifications
|
|
134
151
|
|
|
135
152
|
```python
|
|
136
|
-
#
|
|
137
|
-
# In later version channel_id will be used to reference notification
|
|
153
|
+
# if not specified Channel Name default's to "Default Channel"
|
|
138
154
|
send_notification(
|
|
139
155
|
title="Download finished"
|
|
140
156
|
message="How to Catch a Fish.mp4"
|
|
141
|
-
channel_name="
|
|
157
|
+
channel_name="Download Notifications"
|
|
142
158
|
)
|
|
143
159
|
```
|
|
144
160
|
|
|
145
161
|
**Sample Image:**
|
|
146
|
-

|
|
162
|
+

|
|
163
|
+
|
|
164
|
+
#### Channel Name (channel_id)
|
|
165
|
+
|
|
166
|
+
You can customize notification channels for different types of notifications.(In later version channel_id will be used to reference notification)
|
|
167
|
+
|
|
168
|
+
```python
|
|
169
|
+
send_notification(
|
|
170
|
+
title='Custom Channel Notification',
|
|
171
|
+
message='This uses a custom notification channel.',
|
|
172
|
+
channel_id='custom_channel'
|
|
173
|
+
)
|
|
174
|
+
```
|
|
147
175
|
|
|
148
176
|
---
|
|
149
177
|
|
|
@@ -229,18 +257,6 @@ uri = get_image_uri('assets/imgs/icon.png')
|
|
|
229
257
|
|
|
230
258
|
Returns - notification id
|
|
231
259
|
|
|
232
|
-
### Advanced Usage
|
|
233
|
-
|
|
234
|
-
You can customize notification channels for different types of notifications.
|
|
235
|
-
|
|
236
|
-
```python
|
|
237
|
-
send_notification(
|
|
238
|
-
title='Custom Channel Notification',
|
|
239
|
-
message='This uses a custom notification channel.',
|
|
240
|
-
channel_id='custom_channel'
|
|
241
|
-
)
|
|
242
|
-
```
|
|
243
|
-
|
|
244
260
|
## Contribution
|
|
245
261
|
|
|
246
262
|
Feel free to open issues or submit pull requests for improvements!
|
|
@@ -271,6 +287,7 @@ If you find this project helpful, consider buying me a coffee! Or Giving it a st
|
|
|
271
287
|
|
|
272
288
|
## Acknowledgments
|
|
273
289
|
|
|
290
|
+
- This Project was "Made For Android" and thoroughly "Tested by" the [Laner Project](https://github.com/Fector101/Laner/) - Laner is an application that creates a secure connection between your PC and Phone to Transfer Files Wirelessly.
|
|
274
291
|
- Thanks to the Kivy and Pyjnius communities for their support.
|
|
275
292
|
|
|
276
293
|
---
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="android-notify",
|
|
5
|
-
version="1.24.
|
|
5
|
+
version="1.24.3",
|
|
6
6
|
author="Fabian",
|
|
7
7
|
author_email='fector101@yahoo.com',
|
|
8
8
|
description="A Python package that simpilfies creating Android Post notifications using PyJNIus in Kivy apps.",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{android_notify-1.24.1 → android_notify-1.24.3}/android_notify.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|