The urwid tag has no wiki summary.
5
votes
2answers
475 views
Python Console UI Suggestions
I'm currently rewriting a perl console application that was using curses, and planning to implement it in Python. So far I've narrowed my library options to straight curses, urwid, and dialog.
The ...
5
votes
2answers
3k views
Python library for (n)curses widgets
While Python's standard library has a module for curses, that seems to require a lot of fairly low-level handling.
Is there a simpler way to get started with writing a basic curses UI which includes ...
4
votes
2answers
137 views
Python ncurses, CDK, urwid difference
What's the difference between these 3? As far as I understand it they both provide binding to curses which is the C library for terminal text-based UI.
I currently have no knowledge of any of the 3 ...
2
votes
1answer
148 views
How to make a chat like UI using Python Urwid?
I alreay can implement chat daemons using gevent and zeromq, but I'd like to make a console UI for them.
My first attempt with ncurses failed, so I tried Urwid and found out that the project nigiri ...
1
vote
1answer
82 views
Missing urwid on OS X Lion Python 2.7
I installed mitmproxy this morning and I started seeing this in my console:
ImportError: No module named urwid
After a bit of Googling I found a post on the TinyCoreLinux forum that implies there ...
1
vote
0answers
46 views
Python pygments and urwid.Edit widget(list with tuples)
I have a problem. I try to make an editor for the terminal. So I use urwid, since it supports both key and mouse events. My setup is to use a custom listwalker and one row Edit widget, and the caption ...
0
votes
0answers
20 views
Python Urwid temporary font change
Is it posssible to change the font using python or a linux terminal? It need to load the font from a local directory i.e ./font.ttf. Is this possible?
0
votes
0answers
39 views
Python and urwid - making edit fields dynamically appear and disappear
I'm trying to build a simple user interface with Python, using urwid.
The basic layout is a radio botton with three options on the left, and, for two of them, corresponding edit fields in the right. ...
0
votes
1answer
91 views
Urwid ListBox: How to get fluid focus movement?
I have the following code snippet that shows a list of numbers, and highlights the currently in-focus item:
import urwid
palette = [('header', 'white', 'black'),
('reveal focus', 'black', 'dark ...
0
votes
0answers
216 views
python - urwid simple listbox example
I'm looking at urwid to develop a console app. As a starting point I'm looking for a simple example of a listbox that displays a few rows that can be scrolled using up/down keys.
Can anyone provide a ...