urwid 4.1.7


pip install urwid

  Latest version

Released: Sep 23, 2026


Meta
Author: Ian Ward
Requires Python: >=3.9.0

Classifiers

Development Status
  • 5 - Production/Stable

Environment
  • Console
  • Console :: Curses

Intended Audience
  • Developers

Operating System
  • POSIX
  • Unix
  • MacOS :: MacOS X
  • Microsoft :: Windows

Topic
  • Software Development :: Libraries :: Python Modules
  • Software Development :: User Interfaces
  • Software Development :: Widget Sets

Programming Language
  • Python :: 3
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14
  • Python :: 3.15
  • Python :: 3 :: Only
  • Python :: Implementation :: CPython
  • Python :: Implementation :: PyPy
  • Python :: Implementation :: GraalPy
  • Python :: Free Threading :: 2 - Beta

Typing
  • Typed

Urwid

current version on PyPi Documentation Status Gitter CI status pre-commit test coverage

About

Urwid is a console user interface library for Python on Linux, OSX, Cygwin or other unix-like OS and partially supports Windows OS (see below).

It includes many features useful for text console application developers including:

  • Applications resize quickly and smoothly

  • Automatic, programmable text alignment and wrapping

  • Simple markup for setting text attributes within blocks of text

  • Powerful list box with programmable content for scrolling all widget types

  • Your choice of event loops: Twisted, Glib, Tornado, asyncio, trio, ZeroMQ or select-based loop

  • Pre-built widgets include edit boxes, buttons, check boxes and radio buttons

  • Display modules include raw, curses, and experimental LCD and web displays

  • Support for UTF-8, simple 8-bit and CJK encodings

  • 24-bit (true color), 256 color, and 88 color mode support

  • Compatible with Python 3.9+ and PyPy

Home Page:

http://urwid.org/

Installation

To install using pip

pip install urwid

For advanced functionality extra requirements need to be installed. Example for ZeroMQ event loop and LCD display:

pip install urwid[serial,zmq]

Alternatively if you are on Debian or Ubuntu

apt-get install python3-urwid

Windows support notes

Windows support is limited to the Windows 10+ due to ANSI support requirement.

  • Not supported:

  1. Terminal widget and all related render API (TermCanvas, TermCharset, TermModes, TermScroller)

  2. Any file descriptors except sockets (Windows OS limitation)

  3. ZMQEventLoop.

  • Special requirements:

  1. Extra libraries required for curses display support:

pip install urwid[curses]
  • CursesDisplay incorrectly handles mouse input in case of fast actions.

  • Only UTF-8 mode is supported.

Testing

To run tests locally, install & run tox. You must have appropriate Python versions installed to run tox for each of them.

To test code in all Python versions:

tox                           # Test all versions specified in tox.ini
tox -e py39                   # Test Python 3.9 only
tox -e py313t                 # Test Python 3.13 with free-threading
tox -e pypy3                  # Test PyPy3
tox -e py39,py310,pypy3       # Test specific versions

Testing different Python implementations

CPython standard (default)

Tests all optional extras including C extensions (glib, zmq, twisted).

tox -e py313

Free-threaded CPython (3.13+)

Tests with compatible extras (tornado, trio, twisted, serial). Excludes C extensions without free-threading wheel support.

tox -e py313t        # Python 3.13 free-threaded (PEP 703)
tox -e py314t        # Python 3.14 free-threaded
tox -e py315t        # Python 3.15 free-threaded

PyPy3

Tests with compatible extras (tornado, trio, serial). Excludes problematic C extensions.

tox -e pypy3

GraalPy

Tests with compatible extras (tornado, serial). Excludes extras that need C extensions GraalPy doesn’t support (glib, zmq) or that have known compatibility issues (trio, twisted). GraalPy also ships no _curses module, so curses-dependent tests are expected to fail, and the Terminal widget (urwid.vterm) is unsupported since its fcntl/pty usage doesn’t work on GraalPy, so its tests are skipped rather than run.

tox -e graalpy311      # GraalPy 3.11
tox -e graalpy312      # GraalPy 3.12

Supported Python versions

Urwid supports:

  • CPython 3.9, 3.10, 3.11, 3.12, 3.13, 3.14, 3.15

  • CPython 3.13+ with free-threading (PEP 703 --disable-gil)

  • PyPy 3.x

  • GraalPy 3.11, 3.12 (experimental)

Python implementation notes

CPython (standard Python)

Full support for all optional features. All extras (curses, glib, serial, tornado, trio, twisted, zmq) can be installed.

CPython with Free-Threading (3.13, 3.14, 3.15+)

Urwid core and pure-Python event loops are fully supported. Some extras require C extensions that may not have free-threading wheels available:

  • ✅ Supported: core, tornado, trio, twisted (24.10.0+), serial, lcd

  • ❌ Unsupported: glib, zmq (require C extensions with free-threading wheel support)

For free-threading Python, install with compatible extras:

python3.13 -m pip install 'urwid[tornado,trio,serial]'

PyPy

Urwid core is fully supported. Some extras may have compatibility issues:

  • ✅ Supported: core, tornado, trio, serial, lcd

  • ⚠️ Limited: twisted (may have issues, test before using)

  • ❌ Unsupported: glib, zmq (C extensions with limited PyPy support)

GraalPy (experimental)

Urwid core and the select/asyncio event loops are supported. Some extras, display modules, and the Terminal widget are not:

  • ✅ Supported: core, tornado, serial, lcd

  • ❌ Unsupported: curses (GraalPy ships no _curses module), glib, zmq, twisted, trio (no C extension support, or known compatibility issues), Terminal widget/urwid.vterm (like on Windows, fcntl/pty usage doesn’t work on GraalPy)

Authors

Creator

wardi

Maintainers

and3rson, tonycpsu, ulidtko, penguinolog

Contributors

1in7billion, abadger, agrenott, akorb, alethiophile, aleufroy, alobbs, amjltc295, and-semakin, andrewshadura, andy-z, anttin2020, Apteryks, Arfrever, AutoAwesome, belak, berney, bk2204, BkPHcgQL3V, bwesterb, carlos-jenkins, Certseeds, Chipsterjulien, chrisspen, cltrudeau, Codeberg-AsGithubAlternative-buhtz, cortesi, d0c-s4vage, derdon, dholth, dimays, dlo, dnaeon, doddo, douglas-larocca, drestebon, dsotr, dwf, EdwardBetts, elenril, EnricoBilla, extempore, fabiand, floppym, flowblok, fmoreau, goncalopp, Gordin, GregIngelmo, grzaks, gurupras, HarveyHunt, Hoolean, hukka, hydratim, ids1024, imrek, isovector, itaisod, ixxra, jeblair, johndeaton, jonblack, jspricke, kedder, Kelketek, KennethNielsen, kesipyc, kkrolczyk, Kwpolska, Lahorde, laike9m, larsks, lfam, lgbaldoni, lighth7015, livibetter, Lothiraldan, Mad-ness, madebr, magniff, marlox-ouda, mattymo, mdtrooper, mgk, mimi1vx, mobyte0, MonAaraj, MonthlyPython, mountainstorm, mselee, mwhudson, naquad, nchavez324, neumond, nolash, ntamas, nyov, ocarneiro, okayzed, pquentin, rbanffy, ReddyKilowatt, regebro, renegarcia, rianhunter, roburban, RRMoelker, rwarren, scopatz, seanhussey, seonon, shadedKE, sithglan, Sjc1000, sporkexec, squrky, ssbr, techdragon, thehunmonkgroup, thisch, thornycrackers, TomasTomecek, tompickering, tony, ttanner, tu500, uSpike, vega0, vit1251, waveform80, Wesmania, xandfury, xndcn, zhongshangwu, zrax

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
wcwidth (>=0.4)
typing-extensions