deltachat-rpc-client 1.159.0__py3-none-any.whl → 1.159.2__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.
- deltachat_rpc_client/_utils.py +3 -2
- deltachat_rpc_client/account.py +11 -0
- deltachat_rpc_client/const.py +1 -0
- deltachat_rpc_client/pytestplugin.py +1 -1
- {deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/METADATA +1 -1
- {deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/RECORD +10 -10
- {deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/WHEEL +1 -1
- {deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/entry_points.txt +0 -0
- {deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/licenses/LICENSE +0 -0
- {deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/top_level.txt +0 -0
deltachat_rpc_client/_utils.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import argparse
|
|
2
|
+
import os
|
|
2
3
|
import re
|
|
3
4
|
import sys
|
|
4
5
|
from threading import Thread
|
|
@@ -89,8 +90,8 @@ def _run_cli(
|
|
|
89
90
|
help="accounts folder (default: current working directory)",
|
|
90
91
|
nargs="?",
|
|
91
92
|
)
|
|
92
|
-
parser.add_argument("--email", action="store", help="email address")
|
|
93
|
-
parser.add_argument("--password", action="store", help="password")
|
|
93
|
+
parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL"))
|
|
94
|
+
parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD"))
|
|
94
95
|
args = parser.parse_args(argv[1:])
|
|
95
96
|
|
|
96
97
|
with Rpc(accounts_dir=args.accounts_dir, **kwargs) as rpc:
|
deltachat_rpc_client/account.py
CHANGED
|
@@ -110,6 +110,17 @@ class Account:
|
|
|
110
110
|
"""Configure an account."""
|
|
111
111
|
yield self._rpc.configure.future(self.id)
|
|
112
112
|
|
|
113
|
+
@futuremethod
|
|
114
|
+
def add_or_update_transport(self, params):
|
|
115
|
+
"""Add a new transport."""
|
|
116
|
+
yield self._rpc.add_or_update_transport.future(self.id, params)
|
|
117
|
+
|
|
118
|
+
@futuremethod
|
|
119
|
+
def list_transports(self):
|
|
120
|
+
"""Returns the list of all email accounts that are used as a transport in the current profile."""
|
|
121
|
+
transports = yield self._rpc.list_transports.future(self.id)
|
|
122
|
+
return transports
|
|
123
|
+
|
|
113
124
|
def bring_online(self):
|
|
114
125
|
"""Start I/O and wait until IMAP becomes IDLE."""
|
|
115
126
|
self.start_io()
|
deltachat_rpc_client/const.py
CHANGED
|
@@ -48,6 +48,7 @@ class EventType(str, Enum):
|
|
|
48
48
|
MSG_READ = "MsgRead"
|
|
49
49
|
MSG_DELETED = "MsgDeleted"
|
|
50
50
|
CHAT_MODIFIED = "ChatModified"
|
|
51
|
+
CHAT_DELETED = "ChatDeleted"
|
|
51
52
|
CHAT_EPHEMERAL_TIMER_MODIFIED = "ChatEphemeralTimerModified"
|
|
52
53
|
CONTACTS_CHANGED = "ContactsChanged"
|
|
53
54
|
LOCATION_CHANGED = "LocationChanged"
|
|
@@ -34,7 +34,7 @@ class ACFactory:
|
|
|
34
34
|
addr, password = self.get_credentials()
|
|
35
35
|
account = self.get_unconfigured_account()
|
|
36
36
|
params = {"addr": addr, "password": password}
|
|
37
|
-
yield account.
|
|
37
|
+
yield account.add_or_update_transport.future(params)
|
|
38
38
|
|
|
39
39
|
assert account.is_configured()
|
|
40
40
|
return account
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
deltachat_rpc_client/__init__.py,sha256=L19BWnRu9TMF--jQ7e5Asgme951WGsldrTknW86KyTg,566
|
|
2
|
-
deltachat_rpc_client/_utils.py,sha256=
|
|
3
|
-
deltachat_rpc_client/account.py,sha256=
|
|
2
|
+
deltachat_rpc_client/_utils.py,sha256=FnmjEIU3pvr3y9jqFAvil8GUHzXNm2dDVNxsIJTZEMI,6393
|
|
3
|
+
deltachat_rpc_client/account.py,sha256=qPIPYPHN8nNR8ZUi0joMHxdYY6IvWxxA1uT_T7pSG9Y,16222
|
|
4
4
|
deltachat_rpc_client/chat.py,sha256=1pbuEBWBjZDD9qQ3U1hY5jozzx0MSs9Ybpw33reA2MU,11208
|
|
5
5
|
deltachat_rpc_client/client.py,sha256=yyXt2USkBeTsqNxtXZNNUqdsPVkqEUHYf7C-5JFmX7s,7043
|
|
6
|
-
deltachat_rpc_client/const.py,sha256=
|
|
6
|
+
deltachat_rpc_client/const.py,sha256=39o1czdW4COf5qH60B7G_vPF3eyeC42tpgIKcejtK8Q,5610
|
|
7
7
|
deltachat_rpc_client/contact.py,sha256=kbqVI93V7-VSCjH8Hfm5M9a62HMnOjBKuw_g6iJN7w8,1966
|
|
8
8
|
deltachat_rpc_client/deltachat.py,sha256=c22_2GX71we6JwQ4yjP-S89mrUYPPbEb3rrPwHHeXt4,1538
|
|
9
9
|
deltachat_rpc_client/events.py,sha256=qYgydsbuWYxQ1PO5ms-D8I5aHpTIiQ6Fg9p23QTvqf0,9877
|
|
10
10
|
deltachat_rpc_client/message.py,sha256=6Jf2WlOp8HOYpjPLXXa_5_rGTg6wVN27PXnF3XIjpGQ,3156
|
|
11
11
|
deltachat_rpc_client/py.typed,sha256=nGQ9Itq-bkXBn5Ri1JIR0oYnDNv7LDRfkowxBSSqVTM,60
|
|
12
|
-
deltachat_rpc_client/pytestplugin.py,sha256=
|
|
12
|
+
deltachat_rpc_client/pytestplugin.py,sha256=Hqzx1nBryhzUV_yMR9BDnrqLrskvSd8MJ5Ap8BRUAFE,4874
|
|
13
13
|
deltachat_rpc_client/rpc.py,sha256=7RIdyEDwOXU0ACU0LanVqTT1RuIDci5iDr7dNEDE_tE,6554
|
|
14
|
-
deltachat_rpc_client-1.159.
|
|
15
|
-
deltachat_rpc_client-1.159.
|
|
16
|
-
deltachat_rpc_client-1.159.
|
|
17
|
-
deltachat_rpc_client-1.159.
|
|
18
|
-
deltachat_rpc_client-1.159.
|
|
19
|
-
deltachat_rpc_client-1.159.
|
|
14
|
+
deltachat_rpc_client-1.159.2.dist-info/licenses/LICENSE,sha256=Pz2eACSxkhsGfW9_iN60pgy-enjnbGTj8df8O3ebnQQ,16726
|
|
15
|
+
deltachat_rpc_client-1.159.2.dist-info/METADATA,sha256=rNEY3ZhWsBSzMhazncjpy9fBtaTsR3_Q09s1fxEI4A8,2175
|
|
16
|
+
deltachat_rpc_client-1.159.2.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
17
|
+
deltachat_rpc_client-1.159.2.dist-info/entry_points.txt,sha256=VHpX6EnKBaNj89qJWctApThnMa8suyaamfZEnQacXgc,81
|
|
18
|
+
deltachat_rpc_client-1.159.2.dist-info/top_level.txt,sha256=ePNMkY10htGrLiLydH1ITvYFM3LcTEa51HyPqJ40hDk,21
|
|
19
|
+
deltachat_rpc_client-1.159.2.dist-info/RECORD,,
|
{deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{deltachat_rpc_client-1.159.0.dist-info → deltachat_rpc_client-1.159.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|