cmsend 0.4.0__tar.gz → 0.4.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.
- {cmsend-0.4.0 → cmsend-0.4.2}/PKG-INFO +4 -2
- {cmsend-0.4.0 → cmsend-0.4.2}/README.md +3 -1
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.egg-info/PKG-INFO +4 -2
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.py +2 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/LICENSE +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.egg-info/SOURCES.txt +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.egg-info/dependency_links.txt +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.egg-info/entry_points.txt +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.egg-info/requires.txt +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/cmsend.egg-info/top_level.txt +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/pyproject.toml +0 -0
- {cmsend-0.4.0 → cmsend-0.4.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cmsend
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: ping messages between chatmail relays
|
|
5
5
|
Project-URL: Repository, https://github.com/chatmail/cmsend
|
|
6
6
|
Project-URL: Changelog, https://github.com/chatmail/cmsend/blob/master/CHANGELOG.md
|
|
@@ -11,7 +11,9 @@ Requires-Dist: deltachat-rpc-client>=2.24.0
|
|
|
11
11
|
Requires-Dist: xdg-base-dirs>=6.0.2
|
|
12
12
|
Dynamic: license-file
|
|
13
13
|
|
|
14
|
-
# cmsend: chatmail sendmail tool for end-to-end encrypted messages
|
|
14
|
+
# cmsend: chatmail sendmail tool for end-to-end encrypted messages
|
|
15
|
+
|
|
16
|
+
**WORK IN PROGRESS: this is more an explorative study for now**
|
|
15
17
|
|
|
16
18
|
To install use:
|
|
17
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cmsend
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: ping messages between chatmail relays
|
|
5
5
|
Project-URL: Repository, https://github.com/chatmail/cmsend
|
|
6
6
|
Project-URL: Changelog, https://github.com/chatmail/cmsend/blob/master/CHANGELOG.md
|
|
@@ -11,7 +11,9 @@ Requires-Dist: deltachat-rpc-client>=2.24.0
|
|
|
11
11
|
Requires-Dist: xdg-base-dirs>=6.0.2
|
|
12
12
|
Dynamic: license-file
|
|
13
13
|
|
|
14
|
-
# cmsend: chatmail sendmail tool for end-to-end encrypted messages
|
|
14
|
+
# cmsend: chatmail sendmail tool for end-to-end encrypted messages
|
|
15
|
+
|
|
16
|
+
**WORK IN PROGRESS: this is more an explorative study for now**
|
|
15
17
|
|
|
16
18
|
To install use:
|
|
17
19
|
|
|
@@ -161,6 +161,8 @@ class Profile:
|
|
|
161
161
|
chat = self.get_tagged_chat(tag)
|
|
162
162
|
snap = chat.get_full_snapshot()
|
|
163
163
|
print(f"{tag}: chat_id={chat.id} name={snap.name}")
|
|
164
|
+
for contact in snap.contacts:
|
|
165
|
+
print(f" - {contact.name_and_addr}")
|
|
164
166
|
|
|
165
167
|
def perform_send(self, tag, text, filename=None):
|
|
166
168
|
self._account.start_io()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|