arcanechat-tui 0.11.0__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.
- arcanechat_tui/__init__.py +3 -0
- arcanechat_tui/__main__.py +5 -0
- arcanechat_tui/_version.py +21 -0
- arcanechat_tui/application.py +165 -0
- arcanechat_tui/cards_widget.py +35 -0
- arcanechat_tui/chatlist.py +104 -0
- arcanechat_tui/cli.py +149 -0
- arcanechat_tui/composer.py +86 -0
- arcanechat_tui/container.py +31 -0
- arcanechat_tui/conversation.py +127 -0
- arcanechat_tui/eventcenter.py +45 -0
- arcanechat_tui/lazylistwaker.py +33 -0
- arcanechat_tui/logger.py +29 -0
- arcanechat_tui/main.py +64 -0
- arcanechat_tui/util.py +86 -0
- arcanechat_tui/welcome_widget.py +10 -0
- arcanechat_tui-0.11.0.dist-info/LICENSE +674 -0
- arcanechat_tui-0.11.0.dist-info/METADATA +84 -0
- arcanechat_tui-0.11.0.dist-info/RECORD +22 -0
- arcanechat_tui-0.11.0.dist-info/WHEEL +5 -0
- arcanechat_tui-0.11.0.dist-info/entry_points.txt +3 -0
- arcanechat_tui-0.11.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: arcanechat-tui
|
|
3
|
+
Version: 0.11.0
|
|
4
|
+
Summary: Delta Chat client for the command line
|
|
5
|
+
Author-email: adbenitez <adb@merlinux.eu>
|
|
6
|
+
Project-URL: Homepage, https://github.com/ArcaneChat/arcanechat-tui
|
|
7
|
+
Project-URL: Issues, https://github.com/ArcaneChat/arcanechat-tui/issues
|
|
8
|
+
Keywords: deltachat,ncurses,tui,arcanechat
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
11
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
12
|
+
Classifier: Operating System :: POSIX
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Requires-Dist: deltachat2>=0.2.0
|
|
18
|
+
Requires-Dist: urwid>=2.6.10
|
|
19
|
+
Requires-Dist: urwid-readline>=0.14
|
|
20
|
+
Requires-Dist: appdirs>=1.4.4
|
|
21
|
+
Provides-Extra: full
|
|
22
|
+
Requires-Dist: deltachat-rpc-server>=1.136.6; extra == "full"
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: deltachat-rpc-server; extra == "dev"
|
|
25
|
+
Requires-Dist: black; extra == "dev"
|
|
26
|
+
Requires-Dist: mypy; extra == "dev"
|
|
27
|
+
Requires-Dist: isort; extra == "dev"
|
|
28
|
+
Requires-Dist: pylint; extra == "dev"
|
|
29
|
+
Requires-Dist: pylama; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest; extra == "dev"
|
|
31
|
+
|
|
32
|
+
# Cursed Delta
|
|
33
|
+
|
|
34
|
+
[](https://pypi.org/project/arcanechat-tui)
|
|
35
|
+
[](https://pepy.tech/project/arcanechat-tui)
|
|
36
|
+
[](https://pypi.org/project/arcanechat-tui)
|
|
37
|
+
[](https://github.com/ArcaneChat/arcanechat-tui/actions/workflows/python-ci.yml)
|
|
38
|
+
[](https://github.com/psf/black)
|
|
39
|
+
|
|
40
|
+
> a lightweight ArcaneChat client for the command line
|
|
41
|
+
|
|
42
|
+
<p align="center">
|
|
43
|
+
<img src="https://github.com/ArcaneChat/arcanechat-tui/blob/main/screenshots/e1.png?raw=true" alt="screenshot of Cursed Delta"/>
|
|
44
|
+
</p>
|
|
45
|
+
|
|
46
|
+
Cursed Delta is a ncurses Delta Chat client developed in Python with the urwid library.
|
|
47
|
+
|
|
48
|
+
#### Features
|
|
49
|
+
|
|
50
|
+
- [X] Create accounts
|
|
51
|
+
- [X] Tweak account configuration (ex. set display name and status)
|
|
52
|
+
- [X] Ability to send text messages :)
|
|
53
|
+
- [X] Read receipts ✓✓
|
|
54
|
+
- [X] Display quoted messages
|
|
55
|
+
- [ ] Account switcher
|
|
56
|
+
- [ ] Chat operations: delete, pin/unpin, mute/unmute, archive/unarchive, add/remove members, etc.
|
|
57
|
+
- [ ] Message operations: reply, delete, open attachment/links, see info, jump to quote
|
|
58
|
+
- [ ] Import/export keys and backups
|
|
59
|
+
- [ ] Ability to send files
|
|
60
|
+
- [ ] Notifications
|
|
61
|
+
- [ ] Support for contact verification and group invitations links
|
|
62
|
+
- [ ] Block/unblock contacts and see the list of blocked contacts
|
|
63
|
+
- [ ] See contact list
|
|
64
|
+
- [ ] Search messages and chats
|
|
65
|
+
- [ ] Open HTML messages
|
|
66
|
+
- [ ] View archived chats
|
|
67
|
+
|
|
68
|
+
## Installation
|
|
69
|
+
|
|
70
|
+
Install Cursed Delta with pip:
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
$ pip install -U arcanechat-tui
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
This program depends on the `deltachat-rpc-server` program to be installed in your system,
|
|
77
|
+
if you want to try to install it using pip run:
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
$ pip install -U arcanechat-tui[full]
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
After installation the command `curseddelta` (and `delta` alias) should be available.
|
|
84
|
+
For more tips and info check [the user guide](https://github.com/ArcaneChat/arcanechat-tui/blob/main/docs/user-guide.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
arcanechat_tui/__init__.py,sha256=yFG9lE7RUK1DoNvKGSxS-31GGcSwNb_CKMUtmaGeTUI,91
|
|
2
|
+
arcanechat_tui/__main__.py,sha256=7iZtR8sTQVdj9Bp0j3XmcTa5V0Mer_qODlBBmkivZ_8,75
|
|
3
|
+
arcanechat_tui/_version.py,sha256=h33CazvO6X2vAgSb_I-BIOLNm7W5MVFnfSYRgLiRpMA,513
|
|
4
|
+
arcanechat_tui/application.py,sha256=6eCT90gNeX3HEGTZviEIEDWHWKqs8-Er1qoqasE_EdM,6252
|
|
5
|
+
arcanechat_tui/cards_widget.py,sha256=0KKeOo9bxjeSUW4MIKhU3cPQRA2i_giC1tJmMQcBc1g,1063
|
|
6
|
+
arcanechat_tui/chatlist.py,sha256=OgzlNapyeoCd6GeMf8zwsSCJGKKRAcmRj93iZFbXAtA,3536
|
|
7
|
+
arcanechat_tui/cli.py,sha256=86b7n_Xao91XFQVuGY9uj8IfDFMf2Nmi72Kfybc9MSc,5205
|
|
8
|
+
arcanechat_tui/composer.py,sha256=_78xQoynLJdAv2ObjLk90nybxtVBqSxrqFeTwK2F_MQ,3316
|
|
9
|
+
arcanechat_tui/container.py,sha256=wAVDyoaDNMh66LZJlyjYS-Ov3EZ2WKAad1dLtRA16G4,1205
|
|
10
|
+
arcanechat_tui/conversation.py,sha256=vLSXA_7pu3XVBFwEZvVRRTRBq0utv_zEKdyB42hF41s,4880
|
|
11
|
+
arcanechat_tui/eventcenter.py,sha256=CRzHpfj0S-lmlovbhdBkmNlZLG6ggDQ6_Wo_0dbMHIs,1843
|
|
12
|
+
arcanechat_tui/lazylistwaker.py,sha256=R7aZAB0nNN4NnXw9C8lIxxDVnrp5ORgdFrVXOW-4jus,1266
|
|
13
|
+
arcanechat_tui/logger.py,sha256=iDjUlixjhTUsf0cbGMuUyChpwqCYkl-BUWwsEhMXxbM,752
|
|
14
|
+
arcanechat_tui/main.py,sha256=nY0gfu4WZuEnhRr72dUXVyq15wufWoP2PzPQRx98Q7E,2339
|
|
15
|
+
arcanechat_tui/util.py,sha256=Fmw4DSRedxiesI250oLrUk8Ot-xOwH0fnAgLbSvO8SA,2382
|
|
16
|
+
arcanechat_tui/welcome_widget.py,sha256=NmqO-upmhxafyEqvX2nb-_oq9jqRyzmv9bIy8DRvZBU,289
|
|
17
|
+
arcanechat_tui-0.11.0.dist-info/LICENSE,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
|
|
18
|
+
arcanechat_tui-0.11.0.dist-info/METADATA,sha256=wNxjzo4AE_06mMEAc6dafx6kytr2BFO1HnFAP7poHws,3320
|
|
19
|
+
arcanechat_tui-0.11.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
20
|
+
arcanechat_tui-0.11.0.dist-info/entry_points.txt,sha256=cOKMCA5BK4reEGl2gSUUqrSbUtzCTWWO4p2V4UbH4jg,98
|
|
21
|
+
arcanechat_tui-0.11.0.dist-info/top_level.txt,sha256=0JfCgQOxXYW8LuwcbE9cUF0m4PCYTXcVmQ63nbmmM8E,15
|
|
22
|
+
arcanechat_tui-0.11.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
arcanechat_tui
|