urwid 2.6.0.post0__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.
Potentially problematic release.
This version of urwid might be problematic. Click here for more details.
- urwid/__init__.py +333 -0
- urwid/canvas.py +1413 -0
- urwid/command_map.py +137 -0
- urwid/container.py +59 -0
- urwid/decoration.py +65 -0
- urwid/display/__init__.py +97 -0
- urwid/display/_posix_raw_display.py +413 -0
- urwid/display/_raw_display_base.py +914 -0
- urwid/display/_web.css +12 -0
- urwid/display/_web.js +462 -0
- urwid/display/_win32.py +171 -0
- urwid/display/_win32_raw_display.py +269 -0
- urwid/display/common.py +1219 -0
- urwid/display/curses.py +690 -0
- urwid/display/escape.py +624 -0
- urwid/display/html_fragment.py +251 -0
- urwid/display/lcd.py +518 -0
- urwid/display/raw.py +37 -0
- urwid/display/web.py +636 -0
- urwid/event_loop/__init__.py +55 -0
- urwid/event_loop/abstract_loop.py +175 -0
- urwid/event_loop/asyncio_loop.py +231 -0
- urwid/event_loop/glib_loop.py +294 -0
- urwid/event_loop/main_loop.py +721 -0
- urwid/event_loop/select_loop.py +230 -0
- urwid/event_loop/tornado_loop.py +206 -0
- urwid/event_loop/trio_loop.py +302 -0
- urwid/event_loop/twisted_loop.py +269 -0
- urwid/event_loop/zmq_loop.py +275 -0
- urwid/font.py +695 -0
- urwid/graphics.py +96 -0
- urwid/highlight.css +19 -0
- urwid/listbox.py +1899 -0
- urwid/monitored_list.py +522 -0
- urwid/numedit.py +376 -0
- urwid/signals.py +330 -0
- urwid/split_repr.py +130 -0
- urwid/str_util.py +358 -0
- urwid/text_layout.py +632 -0
- urwid/treetools.py +515 -0
- urwid/util.py +557 -0
- urwid/version.py +16 -0
- urwid/vterm.py +1806 -0
- urwid/widget/__init__.py +181 -0
- urwid/widget/attr_map.py +161 -0
- urwid/widget/attr_wrap.py +140 -0
- urwid/widget/bar_graph.py +649 -0
- urwid/widget/big_text.py +77 -0
- urwid/widget/box_adapter.py +126 -0
- urwid/widget/columns.py +1145 -0
- urwid/widget/constants.py +574 -0
- urwid/widget/container.py +227 -0
- urwid/widget/divider.py +110 -0
- urwid/widget/edit.py +718 -0
- urwid/widget/filler.py +403 -0
- urwid/widget/frame.py +539 -0
- urwid/widget/grid_flow.py +539 -0
- urwid/widget/line_box.py +194 -0
- urwid/widget/overlay.py +829 -0
- urwid/widget/padding.py +597 -0
- urwid/widget/pile.py +971 -0
- urwid/widget/popup.py +170 -0
- urwid/widget/progress_bar.py +141 -0
- urwid/widget/scrollable.py +597 -0
- urwid/widget/solid_fill.py +44 -0
- urwid/widget/text.py +354 -0
- urwid/widget/widget.py +852 -0
- urwid/widget/widget_decoration.py +166 -0
- urwid/widget/wimp.py +792 -0
- urwid/wimp.py +23 -0
- urwid-2.6.0.post0.dist-info/COPYING +504 -0
- urwid-2.6.0.post0.dist-info/METADATA +332 -0
- urwid-2.6.0.post0.dist-info/RECORD +75 -0
- urwid-2.6.0.post0.dist-info/WHEEL +5 -0
- urwid-2.6.0.post0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: urwid
|
|
3
|
+
Version: 2.6.0.post0
|
|
4
|
+
Summary: A full-featured console (xterm et al.) user interface library
|
|
5
|
+
Home-page: https://urwid.org/
|
|
6
|
+
Author-email: Ian Ward <ian@excess.org>
|
|
7
|
+
License: LGPL-2.1-only
|
|
8
|
+
Project-URL: Homepage, https://urwid.org/
|
|
9
|
+
Project-URL: Documentation, https://urwid.org/manual/index.html
|
|
10
|
+
Project-URL: Repository, https://github.com/urwid/urwid
|
|
11
|
+
Project-URL: Bug Tracker, https://github.com/urwid/urwid/issues
|
|
12
|
+
Keywords: curses,ui,widget,scroll,listbox,user interface,text layout,console,ncurses
|
|
13
|
+
Platform: unix-like
|
|
14
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Environment :: Console :: Curses
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
19
|
+
Classifier: Operating System :: POSIX
|
|
20
|
+
Classifier: Operating System :: Unix
|
|
21
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Topic :: Software Development :: Widget Sets
|
|
25
|
+
Classifier: Programming Language :: Python :: 3
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
32
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
33
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
34
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
35
|
+
Requires-Python: >3.7
|
|
36
|
+
Description-Content-Type: text/x-rst
|
|
37
|
+
License-File: COPYING
|
|
38
|
+
Requires-Dist: typing-extensions
|
|
39
|
+
Requires-Dist: wcwidth
|
|
40
|
+
Provides-Extra: curses
|
|
41
|
+
Requires-Dist: windows-curses ; (sys_platform == "win32") and extra == 'curses'
|
|
42
|
+
Provides-Extra: glib
|
|
43
|
+
Requires-Dist: PyGObject ; extra == 'glib'
|
|
44
|
+
Provides-Extra: lcd
|
|
45
|
+
Requires-Dist: pyserial ; extra == 'lcd'
|
|
46
|
+
Provides-Extra: serial
|
|
47
|
+
Requires-Dist: pyserial ; extra == 'serial'
|
|
48
|
+
Provides-Extra: tornado
|
|
49
|
+
Requires-Dist: tornado >=5.0 ; extra == 'tornado'
|
|
50
|
+
Provides-Extra: trio
|
|
51
|
+
Requires-Dist: trio >=0.22.0 ; extra == 'trio'
|
|
52
|
+
Requires-Dist: exceptiongroup ; extra == 'trio'
|
|
53
|
+
Provides-Extra: twisted
|
|
54
|
+
Requires-Dist: twisted ; extra == 'twisted'
|
|
55
|
+
Provides-Extra: zmq
|
|
56
|
+
Requires-Dist: zmq ; extra == 'zmq'
|
|
57
|
+
|
|
58
|
+
Urwid
|
|
59
|
+
=====
|
|
60
|
+
|pypi| |docs| |gitter| |ci| |pre-commit| |coveralls|
|
|
61
|
+
|
|
62
|
+
About
|
|
63
|
+
=====
|
|
64
|
+
|
|
65
|
+
Urwid is a console user interface library for Python on Linux, OSX, Cygwin or other unix-like OS
|
|
66
|
+
and partially supports Windows OS (see below).
|
|
67
|
+
|
|
68
|
+
It includes many features useful for text console application developers including:
|
|
69
|
+
|
|
70
|
+
- Applications resize quickly and smoothly
|
|
71
|
+
- Automatic, programmable text alignment and wrapping
|
|
72
|
+
- Simple markup for setting text attributes within blocks of text
|
|
73
|
+
- Powerful list box with programmable content for scrolling all widget types
|
|
74
|
+
- Your choice of event loops: Twisted, Glib, Tornado, asyncio, trio, ZeroMQ or select-based loop
|
|
75
|
+
- Pre-built widgets include edit boxes, buttons, check boxes and radio buttons
|
|
76
|
+
- Display modules include raw, curses, and experimental LCD and web displays
|
|
77
|
+
- Support for UTF-8, simple 8-bit and CJK encodings
|
|
78
|
+
- 24-bit (true color), 256 color, and 88 color mode support
|
|
79
|
+
- Compatible with Python 3.7+ and PyPy
|
|
80
|
+
|
|
81
|
+
Home Page:
|
|
82
|
+
http://urwid.org/
|
|
83
|
+
|
|
84
|
+
Installation
|
|
85
|
+
============
|
|
86
|
+
|
|
87
|
+
To install using pip
|
|
88
|
+
|
|
89
|
+
.. code:: bash
|
|
90
|
+
|
|
91
|
+
pip install urwid
|
|
92
|
+
|
|
93
|
+
For advanced functionality extra requirements need to be installed.
|
|
94
|
+
Example for ZeroMQ event loop and LCD display:
|
|
95
|
+
|
|
96
|
+
.. code:: bash
|
|
97
|
+
|
|
98
|
+
pip install urwid[serial,zmq]
|
|
99
|
+
|
|
100
|
+
Alternatively if you are on Debian or Ubuntu
|
|
101
|
+
|
|
102
|
+
.. code:: bash
|
|
103
|
+
|
|
104
|
+
apt-get install python3-urwid
|
|
105
|
+
|
|
106
|
+
Windows support notes
|
|
107
|
+
=====================
|
|
108
|
+
|
|
109
|
+
* Not supported:
|
|
110
|
+
|
|
111
|
+
1. Terminal widget and all related render API (TermCanvas, TermCharset, TermModes, TermScroller)
|
|
112
|
+
2. Any file descriptors except sockets (Windows OS limitation)
|
|
113
|
+
3. ZMQEventLoop.
|
|
114
|
+
|
|
115
|
+
* Special requirements:
|
|
116
|
+
|
|
117
|
+
1. Extra libraries required for curses display support:
|
|
118
|
+
|
|
119
|
+
.. code-block:: bash
|
|
120
|
+
|
|
121
|
+
pip install urwid[curses]
|
|
122
|
+
|
|
123
|
+
* CursesDisplay incorrectly handles mouse input in case of fast actions.
|
|
124
|
+
* Only UTF-8 mode is supported.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
Testing
|
|
128
|
+
=======
|
|
129
|
+
|
|
130
|
+
To run tests locally, install & run `tox`. You must have
|
|
131
|
+
appropriate Python versions installed to run `tox` for
|
|
132
|
+
each of them.
|
|
133
|
+
|
|
134
|
+
To test code in all Python versions:
|
|
135
|
+
|
|
136
|
+
.. code:: bash
|
|
137
|
+
|
|
138
|
+
tox # Test all versions specified in tox.ini:
|
|
139
|
+
tox -e py39 # Test Python 3.9 only
|
|
140
|
+
tox -e py39,py10,pypy3 # Test Python 3.9, Python 3.10 & pypy3
|
|
141
|
+
|
|
142
|
+
Supported Python versions
|
|
143
|
+
=========================
|
|
144
|
+
|
|
145
|
+
- 3.7
|
|
146
|
+
- 3.8
|
|
147
|
+
- 3.9
|
|
148
|
+
- 3.10
|
|
149
|
+
- 3.11
|
|
150
|
+
- 3.12
|
|
151
|
+
- pypy3
|
|
152
|
+
|
|
153
|
+
Authors
|
|
154
|
+
=======
|
|
155
|
+
|
|
156
|
+
Creator
|
|
157
|
+
-------
|
|
158
|
+
|
|
159
|
+
`wardi <//github.com/wardi>`_
|
|
160
|
+
|
|
161
|
+
Maintainers
|
|
162
|
+
-----------
|
|
163
|
+
|
|
164
|
+
`and3rson <//github.com/and3rson>`_,
|
|
165
|
+
`tonycpsu <//github.com/tonycpsu>`_,
|
|
166
|
+
`ulidtko <//github.com/ulidtko>`_,
|
|
167
|
+
`penguinolog <//github.com/penguinolog>`_
|
|
168
|
+
|
|
169
|
+
Contributors
|
|
170
|
+
------------
|
|
171
|
+
|
|
172
|
+
`1in7billion <//github.com/1in7billion>`_,
|
|
173
|
+
`abadger <//github.com/abadger>`_,
|
|
174
|
+
`agrenott <//github.com/agrenott>`_,
|
|
175
|
+
`akorb <//github.com/akorb>`_,
|
|
176
|
+
`alethiophile <//github.com/alethiophile>`_,
|
|
177
|
+
`aleufroy <//github.com/aleufroy>`_,
|
|
178
|
+
`alobbs <//github.com/alobbs>`_,
|
|
179
|
+
`amjltc295 <//github.com/amjltc295>`_,
|
|
180
|
+
`and-semakin <//github.com/and-semakin>`_,
|
|
181
|
+
`andrewshadura <//github.com/andrewshadura>`_,
|
|
182
|
+
`andy-z <//github.com/andy-z>`_,
|
|
183
|
+
`anttin2020 <//github.com/anttin2020>`_,
|
|
184
|
+
`Apteryks <//github.com/Apteryks>`_,
|
|
185
|
+
`Arfrever <//github.com/Arfrever>`_,
|
|
186
|
+
`AutoAwesome <//github.com/AutoAwesome>`_,
|
|
187
|
+
`belak <//github.com/belak>`_,
|
|
188
|
+
`berney <//github.com/berney>`_,
|
|
189
|
+
`bk2204 <//github.com/bk2204>`_,
|
|
190
|
+
`BkPHcgQL3V <//github.com/BkPHcgQL3V>`_,
|
|
191
|
+
`bwesterb <//github.com/bwesterb>`_,
|
|
192
|
+
`carlos-jenkins <//github.com/carlos-jenkins>`_,
|
|
193
|
+
`Certseeds <//github.com/Certseeds>`_,
|
|
194
|
+
`Chipsterjulien <//github.com/Chipsterjulien>`_,
|
|
195
|
+
`chrisspen <//github.com/chrisspen>`_,
|
|
196
|
+
`cltrudeau <//github.com/cltrudeau>`_,
|
|
197
|
+
`Codeberg-AsGithubAlternative-buhtz <//github.com/Codeberg-AsGithubAlternative-buhtz>`_,
|
|
198
|
+
`cortesi <//github.com/cortesi>`_,
|
|
199
|
+
`d0c-s4vage <//github.com/d0c-s4vage>`_,
|
|
200
|
+
`derdon <//github.com/derdon>`_,
|
|
201
|
+
`dholth <//github.com/dholth>`_,
|
|
202
|
+
`dimays <//github.com/dimays>`_,
|
|
203
|
+
`dlo <//github.com/dlo>`_,
|
|
204
|
+
`dnaeon <//github.com/dnaeon>`_,
|
|
205
|
+
`doddo <//github.com/doddo>`_,
|
|
206
|
+
`douglas-larocca <//github.com/douglas-larocca>`_,
|
|
207
|
+
`drestebon <//github.com/drestebon>`_,
|
|
208
|
+
`dsotr <//github.com/dsotr>`_,
|
|
209
|
+
`dwf <//github.com/dwf>`_,
|
|
210
|
+
`EdwardBetts <//github.com/EdwardBetts>`_,
|
|
211
|
+
`elenril <//github.com/elenril>`_,
|
|
212
|
+
`EnricoBilla <//github.com/EnricoBilla>`_,
|
|
213
|
+
`extempore <//github.com/extempore>`_,
|
|
214
|
+
`fabiand <//github.com/fabiand>`_,
|
|
215
|
+
`floppym <//github.com/floppym>`_,
|
|
216
|
+
`flowblok <//github.com/flowblok>`_,
|
|
217
|
+
`fmoreau <//github.com/fmoreau>`_,
|
|
218
|
+
`goncalopp <//github.com/goncalopp>`_,
|
|
219
|
+
`Gordin <//github.com/Gordin>`_,
|
|
220
|
+
`GregIngelmo <//github.com/GregIngelmo>`_,
|
|
221
|
+
`grzaks <//github.com/grzaks>`_,
|
|
222
|
+
`gurupras <//github.com/gurupras>`_,
|
|
223
|
+
`HarveyHunt <//github.com/HarveyHunt>`_,
|
|
224
|
+
`Hoolean <//github.com/Hoolean>`_,
|
|
225
|
+
`hukka <//github.com/hukka>`_,
|
|
226
|
+
`hydratim <//github.com/hydratim>`_,
|
|
227
|
+
`ids1024 <//github.com/ids1024>`_,
|
|
228
|
+
`imrek <//github.com/imrek>`_,
|
|
229
|
+
`isovector <//github.com/isovector>`_,
|
|
230
|
+
`itaisod <//github.com/itaisod>`_,
|
|
231
|
+
`ixxra <//github.com/ixxra>`_,
|
|
232
|
+
`jeblair <//github.com/jeblair>`_,
|
|
233
|
+
`johndeaton <//github.com/johndeaton>`_,
|
|
234
|
+
`jonblack <//github.com/jonblack>`_,
|
|
235
|
+
`jspricke <//github.com/jspricke>`_,
|
|
236
|
+
`kedder <//github.com/kedder>`_,
|
|
237
|
+
`Kelketek <//github.com/Kelketek>`_,
|
|
238
|
+
`KennethNielsen <//github.com/KennethNielsen>`_,
|
|
239
|
+
`kesipyc <//github.com/kesipyc>`_,
|
|
240
|
+
`kkrolczyk <//github.com/kkrolczyk>`_,
|
|
241
|
+
`Kwpolska <//github.com/Kwpolska>`_,
|
|
242
|
+
`Lahorde <//github.com/Lahorde>`_,
|
|
243
|
+
`laike9m <//github.com/laike9m>`_,
|
|
244
|
+
`larsks <//github.com/larsks>`_,
|
|
245
|
+
`lfam <//github.com/lfam>`_,
|
|
246
|
+
`lgbaldoni <//github.com/lgbaldoni>`_,
|
|
247
|
+
`lighth7015 <//github.com/lighth7015>`_,
|
|
248
|
+
`livibetter <//github.com/livibetter>`_,
|
|
249
|
+
`Lothiraldan <//github.com/Lothiraldan>`_,
|
|
250
|
+
`Mad-ness <//github.com/Mad-ness>`_,
|
|
251
|
+
`madebr <//github.com/madebr>`_,
|
|
252
|
+
`magniff <//github.com/magniff>`_,
|
|
253
|
+
`marlox-ouda <//github.com/marlox-ouda>`_,
|
|
254
|
+
`mattymo <//github.com/mattymo>`_,
|
|
255
|
+
`mdtrooper <//github.com/mdtrooper>`_,
|
|
256
|
+
`mgk <//github.com/mgk>`_,
|
|
257
|
+
`mimi1vx <//github.com/mimi1vx>`_,
|
|
258
|
+
`mobyte0 <//github.com/mobyte0>`_,
|
|
259
|
+
`MonAaraj <//github.com/MonAaraj>`_,
|
|
260
|
+
`MonthlyPython <//github.com/MonthlyPython>`_,
|
|
261
|
+
`mountainstorm <//github.com/mountainstorm>`_,
|
|
262
|
+
`mselee <//github.com/mselee>`_,
|
|
263
|
+
`mwhudson <//github.com/mwhudson>`_,
|
|
264
|
+
`naquad <//github.com/naquad>`_,
|
|
265
|
+
`nchavez324 <//github.com/nchavez324>`_,
|
|
266
|
+
`neumond <//github.com/neumond>`_,
|
|
267
|
+
`nolash <//github.com/nolash>`_,
|
|
268
|
+
`ntamas <//github.com/ntamas>`_,
|
|
269
|
+
`nyov <//github.com/nyov>`_,
|
|
270
|
+
`ocarneiro <//github.com/ocarneiro>`_,
|
|
271
|
+
`okayzed <//github.com/okayzed>`_,
|
|
272
|
+
`pquentin <//github.com/pquentin>`_,
|
|
273
|
+
`rbanffy <//github.com/rbanffy>`_,
|
|
274
|
+
`ReddyKilowatt <//github.com/ReddyKilowatt>`_,
|
|
275
|
+
`regebro <//github.com/regebro>`_,
|
|
276
|
+
`renegarcia <//github.com/renegarcia>`_,
|
|
277
|
+
`rianhunter <//github.com/rianhunter>`_,
|
|
278
|
+
`roburban <//github.com/roburban>`_,
|
|
279
|
+
`RRMoelker <//github.com/RRMoelker>`_,
|
|
280
|
+
`rwarren <//github.com/rwarren>`_,
|
|
281
|
+
`scopatz <//github.com/scopatz>`_,
|
|
282
|
+
`seanhussey <//github.com/seanhussey>`_,
|
|
283
|
+
`seonon <//github.com/seonon>`_,
|
|
284
|
+
`shadedKE <//github.com/shadedKE>`_,
|
|
285
|
+
`sithglan <//github.com/sithglan>`_,
|
|
286
|
+
`Sjc1000 <//github.com/Sjc1000>`_,
|
|
287
|
+
`sporkexec <//github.com/sporkexec>`_,
|
|
288
|
+
`squrky <//github.com/squrky>`_,
|
|
289
|
+
`ssbr <//github.com/ssbr>`_,
|
|
290
|
+
`techdragon <//github.com/techdragon>`_,
|
|
291
|
+
`thehunmonkgroup <//github.com/thehunmonkgroup>`_,
|
|
292
|
+
`thisch <//github.com/thisch>`_,
|
|
293
|
+
`thornycrackers <//github.com/thornycrackers>`_,
|
|
294
|
+
`TomasTomecek <//github.com/TomasTomecek>`_,
|
|
295
|
+
`tompickering <//github.com/tompickering>`_,
|
|
296
|
+
`tony <//github.com/tony>`_,
|
|
297
|
+
`ttanner <//github.com/ttanner>`_,
|
|
298
|
+
`tu500 <//github.com/tu500>`_,
|
|
299
|
+
`uSpike <//github.com/uSpike>`_,
|
|
300
|
+
`vega0 <//github.com/vega0>`_,
|
|
301
|
+
`vit1251 <//github.com/vit1251>`_,
|
|
302
|
+
`waveform80 <//github.com/waveform80>`_,
|
|
303
|
+
`Wesmania <//github.com/Wesmania>`_,
|
|
304
|
+
`xandfury <//github.com/xandfury>`_,
|
|
305
|
+
`xndcn <//github.com/xndcn>`_,
|
|
306
|
+
`zhongshangwu <//github.com/zhongshangwu>`_,
|
|
307
|
+
`zrax <//github.com/zrax>`_
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/urwid
|
|
311
|
+
:alt: current version on PyPi
|
|
312
|
+
:target: https://pypi.python.org/pypi/urwid
|
|
313
|
+
|
|
314
|
+
.. |docs| image:: https://github.com/urwid/urwid/actions/workflows/documentation.yml/badge.svg?branch=master
|
|
315
|
+
:alt: Documentation Status
|
|
316
|
+
:target: https://urwid.org
|
|
317
|
+
|
|
318
|
+
.. |gitter| image:: https://img.shields.io/gitter/room/urwid/community
|
|
319
|
+
:alt: Gitter
|
|
320
|
+
:target: https://gitter.im/urwid/community
|
|
321
|
+
|
|
322
|
+
.. |ci| image:: https://github.com/urwid/urwid/actions/workflows/pythonpackage.yml/badge.svg?branch=master
|
|
323
|
+
:target: https://github.com/urwid/urwid/actions
|
|
324
|
+
:alt: CI status
|
|
325
|
+
|
|
326
|
+
.. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit
|
|
327
|
+
:target: https://github.com/pre-commit/pre-commit
|
|
328
|
+
:alt: pre-commit
|
|
329
|
+
|
|
330
|
+
.. |coveralls| image:: https://coveralls.io/repos/github/urwid/urwid/badge.svg
|
|
331
|
+
:alt: test coverage
|
|
332
|
+
:target: https://coveralls.io/github/urwid/urwid
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
urwid/__init__.py,sha256=dY4XP3DN7dvuJYQDO3wmNjCeuxWoSuPiU5IZsiAVXGo,7960
|
|
2
|
+
urwid/canvas.py,sha256=nE0LCCrz8l_5RTmWvcB20W8ACgjTUh51rnVZySqbxpM,46762
|
|
3
|
+
urwid/command_map.py,sha256=M_OjrGY4yKn0jU3MEF9UOhBo2R6y_zZ-qo3LVIKNT_g,4310
|
|
4
|
+
urwid/container.py,sha256=mikK50qN_Cu-8VlBRqQZzU4DcOvz8P_5CfozyyoIf3Q,1589
|
|
5
|
+
urwid/decoration.py,sha256=sKfCe8SdSWZ4V0Ed_G4aumLxwwhnjoVvF70vlAhoXBE,1772
|
|
6
|
+
urwid/font.py,sha256=c84Yi96dAihF-YRtDoiCQwq4zRo77JZ_XEZqOg1h-Io,31932
|
|
7
|
+
urwid/graphics.py,sha256=pVGGU5kOWV56iXawDROgQWQwIbgaoh32JHE2COcGesQ,2481
|
|
8
|
+
urwid/highlight.css,sha256=uPpoEJzC1ZNqjfuPuYURzsVANAei1YC040sU_GSaiAk,716
|
|
9
|
+
urwid/listbox.py,sha256=JwRUiWzlTKx6jM8F8WrgrnY0P7uRPvFNDWsEXrHFs5E,68104
|
|
10
|
+
urwid/monitored_list.py,sha256=iHFqhvC5kOVYZRp909ExWn3hli1y_X1y0cAAlGfH5EQ,18722
|
|
11
|
+
urwid/numedit.py,sha256=mqZHh1kjgDd-roCFAlfx7lw0kCrJaLeEjbABeUwP_0g,13317
|
|
12
|
+
urwid/signals.py,sha256=qOcgqaU0zRcDkJrZ02Jiqtdp3doYKRtoNAiY4KPZBfY,13166
|
|
13
|
+
urwid/split_repr.py,sha256=pXzuddzQ4RnfIl537Gvoe8PVaBRHCPnxgdYvKK0qm8k,3899
|
|
14
|
+
urwid/str_util.py,sha256=j5neiKqkFgMEbCdJI_FL6Xw-xfd5KJsFJXjETWJDMKY,10912
|
|
15
|
+
urwid/text_layout.py,sha256=Qm0LvVaTdvgHt2_2MOlYuQJhLsejo6KueMxupNF7tNE,22499
|
|
16
|
+
urwid/treetools.py,sha256=MYCcakbq7SYdfqbyCPgKxwppJmz1jojEEziAzF-_pus,16401
|
|
17
|
+
urwid/util.py,sha256=pGXnma03_IBx3v6_qN9cDWPXPj_YjkhQ9IxLjm_0TpU,15747
|
|
18
|
+
urwid/version.py,sha256=p0ilQt9NrRTFOQI3X9DSOZx57YF9SZwjqkEn6JF0Lk4,417
|
|
19
|
+
urwid/vterm.py,sha256=gjQeIQq7imYOGy_CeFAhjsQtfblXKv-t4o1vAF8oeu8,58298
|
|
20
|
+
urwid/wimp.py,sha256=o1YsjL_tBLXba8ZRr1MTHH0poLSlXT_atY3-uD_Ualg,567
|
|
21
|
+
urwid/display/__init__.py,sha256=y90WbHPNRHlimPrXhzsSfFsBbBHy8QErmB1y4Xza-xo,1732
|
|
22
|
+
urwid/display/_posix_raw_display.py,sha256=PL2tzJNE2cDUwYNmF3_y4Q1OQt9AyDu4oW_fc0H1Gy0,14527
|
|
23
|
+
urwid/display/_raw_display_base.py,sha256=QCa6inOssfVyAEog-_XsAFS7ULt6uaKP1gOfKzDxZVM,33186
|
|
24
|
+
urwid/display/_web.css,sha256=6HarEsIspH2egt51HSrgI8Yl2lGi-DbziWOdS4RHNlk,359
|
|
25
|
+
urwid/display/_web.js,sha256=aWEOQ4EsADsiNgdw-zHEUMCRD2bnfR8M1mu4dOc2Tqk,12947
|
|
26
|
+
urwid/display/_win32.py,sha256=hD4hytElpfIv5qxGNTMSa2QeBNByqJDNVpmiiQSj6CM,5401
|
|
27
|
+
urwid/display/_win32_raw_display.py,sha256=kn__u-p3kObH6gYyfR8jHqUhblvaaY5PWYm7nI5g-HE,9262
|
|
28
|
+
urwid/display/common.py,sha256=_WiwXtt6KULEVLGeZvRIwmNcSfL92BPFv-uhb0_w2d0,39528
|
|
29
|
+
urwid/display/curses.py,sha256=0bgtP0PEagXL-wfCxGRnXeW5p_uxOvVKVubBC8cAwic,22784
|
|
30
|
+
urwid/display/escape.py,sha256=rUIaEpyTMmZYFdn2tXn_wmecEW-D0tO59FUk0t5neZo,17968
|
|
31
|
+
urwid/display/html_fragment.py,sha256=pAnQZCwN7kuwqbCMECuQjGatHQGSG-YAE1gPjRQ5pgU,8598
|
|
32
|
+
urwid/display/lcd.py,sha256=ANqRJ7rFhy0xfjrUKccqYr4yBRrDgbJ6Bk36F0z1WQA,17328
|
|
33
|
+
urwid/display/raw.py,sha256=TSkIEM6KnQHPmmpBkWKdirZOwVXhSV67k7hWmuuR2OY,1125
|
|
34
|
+
urwid/display/web.py,sha256=B5KZNl1jzBC5fRUOB9V1gGKjvbD62BOka_XNo2Zf76Y,19117
|
|
35
|
+
urwid/event_loop/__init__.py,sha256=3ejnhU8bxkA2d3LM3MFjUEJ9n4DI6yzWkjrECM35FKI,1059
|
|
36
|
+
urwid/event_loop/abstract_loop.py,sha256=Da4oc2dfUiq7E9ZSBcqjbGy-vvdoDuztqmbpbqH9J9M,5365
|
|
37
|
+
urwid/event_loop/asyncio_loop.py,sha256=Xm7QzN98_FV_luP_l32RyoKnQcYWsyRgiHB5t87hifU,8315
|
|
38
|
+
urwid/event_loop/glib_loop.py,sha256=GFoLAenoWKm-13rTBKzCF2JdCEryJKpMo25aidZ7BWs,9351
|
|
39
|
+
urwid/event_loop/main_loop.py,sha256=jzTr13qxCu62FHrohPO3MrnizAivcDuKTdRoko4KwbE,25907
|
|
40
|
+
urwid/event_loop/select_loop.py,sha256=5ZkIPqyIVJdWRTC89Ca5h8ub_-jpqXjFZaKqiWhdkDg,7534
|
|
41
|
+
urwid/event_loop/tornado_loop.py,sha256=TzhGeDQ7KdAvlZHK5QViUwFDlTWG81ABdqQqeBP2OjU,6857
|
|
42
|
+
urwid/event_loop/trio_loop.py,sha256=2SBX1pbiJddAsXbe1itPPXYdoX5_U00m56A4h0x9dWI,10467
|
|
43
|
+
urwid/event_loop/twisted_loop.py,sha256=XdIIopAAAM7o13z_2OTTZ1HeulREcqk3T85xKlcxLuQ,9193
|
|
44
|
+
urwid/event_loop/zmq_loop.py,sha256=W_7tWPkNUywp25zwmpKWrKzNRZUWWWIv6zPhvtGQyS8,8858
|
|
45
|
+
urwid/widget/__init__.py,sha256=Fn2tuTwKtCvMx7T_XeUbPhTxW-_j6yWP8nEGlgWlTYk,4082
|
|
46
|
+
urwid/widget/attr_map.py,sha256=L6svBcabtXeSaU2cNrgDv4Nne6QYk-nvVbr88sA4WnY,6205
|
|
47
|
+
urwid/widget/attr_wrap.py,sha256=KwX0i8xAsqLTChhJuBx-3cAw8GhpRxvIECLjQIvuFOg,4721
|
|
48
|
+
urwid/widget/bar_graph.py,sha256=E8pj54ZJMAkZlFvlBwAV8b8gE0lrp-ruwRXnYqQM6dw,21569
|
|
49
|
+
urwid/widget/big_text.py,sha256=wSltLwLMW4KLS7ZYMjThDYeMpqEWNt_P0IQ_hIiSPiE,2192
|
|
50
|
+
urwid/widget/box_adapter.py,sha256=rA9qIQPyG-3th-SwK7WcErxNbTmzBGarXK7rhkRXUfs,4136
|
|
51
|
+
urwid/widget/columns.py,sha256=YgdQJo5r5gFufcmFjyoBWjYe_2N_bdUUuz38ZTHYjHk,43212
|
|
52
|
+
urwid/widget/constants.py,sha256=0MFz5hZO5J6afFCX1-7aB1KiFMNRFt_3URnaHn7vo_s,15638
|
|
53
|
+
urwid/widget/container.py,sha256=mi4W_muLw3-lTKmIFmgEYWWmL6Kmhd1FwmeHxCOh1-s,7141
|
|
54
|
+
urwid/widget/divider.py,sha256=f5XyxfrOQlbuRZyh-2OzQ9TOCli9JTQZGIGvY6vIR4U,3194
|
|
55
|
+
urwid/widget/edit.py,sha256=3nOOH3FWcXuk_2UzCUNow-hsFJh45slUtOdr69SY7CA,23760
|
|
56
|
+
urwid/widget/filler.py,sha256=BuoMz5qi3oZNOvyeF2vXUbKwzJY1KVrT8MNwGuiCwNQ,14526
|
|
57
|
+
urwid/widget/frame.py,sha256=ImAv3T1GXyPMpL9L4tnSjqXL9X86zS-gFrbDXayz-fI,19221
|
|
58
|
+
urwid/widget/grid_flow.py,sha256=oNz5Ng5mvaHAakIm9D8-BG0QXr5GLx5WofdP71tJg0Y,19794
|
|
59
|
+
urwid/widget/line_box.py,sha256=V750xiZtkw6_uRXLhNY91ER3pXwwrZstVv_IJUZd_YY,6884
|
|
60
|
+
urwid/widget/overlay.py,sha256=f79dz-yIszZpnQhh05-aixVjfkYbgZ_5VEYCZcCF7TM,30570
|
|
61
|
+
urwid/widget/padding.py,sha256=9Z8wNS24nECJ4Mk3f2NUsXnElRd5mkNYi0irqUslEMA,20847
|
|
62
|
+
urwid/widget/pile.py,sha256=3C1g09IU_LK840y4SeNehJuEizCZlAO3OsSYk8IhMZU,36009
|
|
63
|
+
urwid/widget/popup.py,sha256=UQ1MTzt8RNcfIvmwIqDM4mypxxXUOMsGoiozom8HfTg,5814
|
|
64
|
+
urwid/widget/progress_bar.py,sha256=b1ltlh9fMF3hJIuPU-FcBqcNF_4eVcTiXRYXJUTEI-0,4710
|
|
65
|
+
urwid/widget/scrollable.py,sha256=X0IiZHjtbxwAFlVIbhyIjMykEMXtYaENIk5HCfqLtkU,21771
|
|
66
|
+
urwid/widget/solid_fill.py,sha256=K-3fNN2CqoK6PSiG9KpvWFvF3hud7OaQibkSjucSxAI,1203
|
|
67
|
+
urwid/widget/text.py,sha256=WOr4nI6X9NMMZwaznmHrBxnk0hgBvfkqL4Ia8WETx8Y,12034
|
|
68
|
+
urwid/widget/widget.py,sha256=RdtexhUGgT0IRURJcvlPJpyEnTq9RMnIa0kt6q5SJM8,29443
|
|
69
|
+
urwid/widget/widget_decoration.py,sha256=aHP9Y7JKVCI2dw2OdRrzMj9p--C1pMIbxSJskWBLIgc,5633
|
|
70
|
+
urwid/widget/wimp.py,sha256=sUF_V92psMD-hj1tX55YKDPQ55ypvmUIiY1sLojPs4k,27188
|
|
71
|
+
urwid-2.6.0.post0.dist-info/COPYING,sha256=NrbT-keRaUP9X-wxPFhHhJRgR-wTN6eLRA5ZkstZX4k,26434
|
|
72
|
+
urwid-2.6.0.post0.dist-info/METADATA,sha256=UxphT4N7UBKiiOBXqPxDuLcHB8uTuHfyx0iCBZKZ8E4,11048
|
|
73
|
+
urwid-2.6.0.post0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
74
|
+
urwid-2.6.0.post0.dist-info/top_level.txt,sha256=AwxQA43kNkjHbhYELXHBKrQ01X5CR2KnDzU07cVqilY,6
|
|
75
|
+
urwid-2.6.0.post0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
urwid
|