android-notify 1.40__tar.gz → 1.41__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.40 → android_notify-1.41}/PKG-INFO +16 -4
- {android_notify-1.40 → android_notify-1.41}/README.md +2 -2
- {android_notify-1.40 → android_notify-1.41}/android_notify/core.py +1 -1
- {android_notify-1.40 → android_notify-1.41}/android_notify/sword.py +1 -1
- {android_notify-1.40 → android_notify-1.41}/android_notify.egg-info/PKG-INFO +16 -4
- {android_notify-1.40 → android_notify-1.41}/setup.py +1 -1
- {android_notify-1.40 → android_notify-1.41}/android_notify/__init__.py +0 -0
- {android_notify-1.40 → android_notify-1.41}/android_notify/__main__.py +0 -0
- {android_notify-1.40 → android_notify-1.41}/android_notify/styles.py +0 -0
- {android_notify-1.40 → android_notify-1.41}/android_notify.egg-info/SOURCES.txt +0 -0
- {android_notify-1.40 → android_notify-1.41}/android_notify.egg-info/dependency_links.txt +0 -0
- {android_notify-1.40 → android_notify-1.41}/android_notify.egg-info/requires.txt +0 -0
- {android_notify-1.40 → android_notify-1.41}/android_notify.egg-info/top_level.txt +0 -0
- {android_notify-1.40 → android_notify-1.41}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.41
|
|
4
4
|
Summary: A Python package that simpilfies creating Android notifications in Kivy apps.
|
|
5
5
|
Home-page: https://github.com/fector101/android-notify
|
|
6
6
|
Author: Fabian
|
|
@@ -21,6 +21,18 @@ Requires-Python: >=3.6
|
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
Requires-Dist: kivy>=2.0.0
|
|
23
23
|
Requires-Dist: pyjnius>=1.4.2
|
|
24
|
+
Dynamic: author
|
|
25
|
+
Dynamic: author-email
|
|
26
|
+
Dynamic: classifier
|
|
27
|
+
Dynamic: description
|
|
28
|
+
Dynamic: description-content-type
|
|
29
|
+
Dynamic: home-page
|
|
30
|
+
Dynamic: keywords
|
|
31
|
+
Dynamic: license
|
|
32
|
+
Dynamic: project-url
|
|
33
|
+
Dynamic: requires-dist
|
|
34
|
+
Dynamic: requires-python
|
|
35
|
+
Dynamic: summary
|
|
24
36
|
|
|
25
37
|
<div align="center">
|
|
26
38
|
<br>
|
|
@@ -166,8 +178,8 @@ notification.send()
|
|
|
166
178
|
|
|
167
179
|
```python
|
|
168
180
|
notification = Notification(
|
|
169
|
-
title="
|
|
170
|
-
message="
|
|
181
|
+
title="FabianDev_",
|
|
182
|
+
message="A twitter about some programming stuff",
|
|
171
183
|
style="large_icon",
|
|
172
184
|
large_icon_path="assets/imgs/profile.png"
|
|
173
185
|
)
|
|
@@ -142,8 +142,8 @@ notification.send()
|
|
|
142
142
|
|
|
143
143
|
```python
|
|
144
144
|
notification = Notification(
|
|
145
|
-
title="
|
|
146
|
-
message="
|
|
145
|
+
title="FabianDev_",
|
|
146
|
+
message="A twitter about some programming stuff",
|
|
147
147
|
style="large_icon",
|
|
148
148
|
large_icon_path="assets/imgs/profile.png"
|
|
149
149
|
)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
""" Non-Advanced Stuff """
|
|
2
2
|
import random
|
|
3
3
|
import os
|
|
4
|
-
from jnius import autoclass,cast
|
|
5
4
|
|
|
6
5
|
ON_ANDROID = False
|
|
7
6
|
try:
|
|
7
|
+
from jnius import autoclass,cast # Needs Java to be installed
|
|
8
8
|
# Get the required Java classes
|
|
9
9
|
PythonActivity = autoclass('org.kivy.android.PythonActivity')
|
|
10
10
|
NotificationChannel = autoclass('android.app.NotificationChannel')
|
|
@@ -3,12 +3,12 @@ import difflib
|
|
|
3
3
|
import random
|
|
4
4
|
import os
|
|
5
5
|
import re
|
|
6
|
-
from jnius import autoclass,cast # pylint: disable=W0611, C0114
|
|
7
6
|
|
|
8
7
|
DEV=0
|
|
9
8
|
ON_ANDROID = False
|
|
10
9
|
|
|
11
10
|
try:
|
|
11
|
+
from jnius import autoclass,cast # Needs Java to be installed pylint: disable=W0611, C0114
|
|
12
12
|
# Get the required Java classes
|
|
13
13
|
PythonActivity = autoclass('org.kivy.android.PythonActivity')
|
|
14
14
|
String = autoclass('java.lang.String')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: android-notify
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.41
|
|
4
4
|
Summary: A Python package that simpilfies creating Android notifications in Kivy apps.
|
|
5
5
|
Home-page: https://github.com/fector101/android-notify
|
|
6
6
|
Author: Fabian
|
|
@@ -21,6 +21,18 @@ Requires-Python: >=3.6
|
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
Requires-Dist: kivy>=2.0.0
|
|
23
23
|
Requires-Dist: pyjnius>=1.4.2
|
|
24
|
+
Dynamic: author
|
|
25
|
+
Dynamic: author-email
|
|
26
|
+
Dynamic: classifier
|
|
27
|
+
Dynamic: description
|
|
28
|
+
Dynamic: description-content-type
|
|
29
|
+
Dynamic: home-page
|
|
30
|
+
Dynamic: keywords
|
|
31
|
+
Dynamic: license
|
|
32
|
+
Dynamic: project-url
|
|
33
|
+
Dynamic: requires-dist
|
|
34
|
+
Dynamic: requires-python
|
|
35
|
+
Dynamic: summary
|
|
24
36
|
|
|
25
37
|
<div align="center">
|
|
26
38
|
<br>
|
|
@@ -166,8 +178,8 @@ notification.send()
|
|
|
166
178
|
|
|
167
179
|
```python
|
|
168
180
|
notification = Notification(
|
|
169
|
-
title="
|
|
170
|
-
message="
|
|
181
|
+
title="FabianDev_",
|
|
182
|
+
message="A twitter about some programming stuff",
|
|
171
183
|
style="large_icon",
|
|
172
184
|
large_icon_path="assets/imgs/profile.png"
|
|
173
185
|
)
|
|
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as readme_data:
|
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name="android-notify",
|
|
9
|
-
version="1.
|
|
9
|
+
version="1.41",
|
|
10
10
|
author="Fabian",
|
|
11
11
|
author_email='fector101@yahoo.com',
|
|
12
12
|
description="A Python package that simpilfies creating Android notifications in Kivy apps.",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|