aioxlib
Human-friendly asyncio interface to the X11 protocol
aioxlib is a pure-Python library that speaks the X11 wire protocol over
asyncio—without blocking the event loop and without linking to libX11.
Documentation
- Online: aioxlib.readthedocs.io
- Local:
pip install --group docs && mkdocs serve
Installation
From within your favorite python environment:
pip install aioxlib
Quick start
The root package exposes the functional API and get_display only:
import asyncio
import aioxlib
async def main():
wnd = await aioxlib.create_window(640, 480, title="Hello from aioxlib")
await wnd.show()
async for event in aioxlib.events():
if wnd.is_delete_window(event):
break
asyncio.run(main())
Explicit display (object API)
import asyncio
import aioxlib
async def main():
display = await aioxlib.get_display()
async with display:
screen = display.default_screen()
wnd = await screen.create_window(640, 480, title="Hello from aioxlib")
await wnd.show()
async for event in display.events():
if wnd.is_delete_window(event):
break
asyncio.run(main())
Package layout
| Module | Contents |
|---|---|
aioxlib (root) |
Constants/enums + functional API + get_display |
aioxlib.constants |
X11 constants and enumerations |
aioxlib.protocol |
Constants, enums, pack/unpack |
aioxlib.connection |
Socket connection, Xauthority |
aioxlib.resource |
Resource, Drawable, ResourceManager |
aioxlib.display (Window, Screen, GC, …) |
Window, Screen, GC |
aioxlib.display |
Display, Pipeline |
aioxlib.render / shm / dbe / … |
Extensions |
Root functional API (selection)
| Function | Role |
|---|---|
get_display / get_default_display |
Open connection |
create_window, map_window, … |
Windows |
events(), pipeline() |
Event stream / batched writes |
flush, query_extension, get_atom, … |
Display operations |
close_default_display |
Tear down default connection |
Classes such as Display, Window, and EventType are not re-exported
from the root; import them from their modules.
Documentation
pip install mkdocs mkdocs-material 'mkdocstrings[python]'
mkdocs serve
Examples
python examples/basic.py
python examples/functional.py
Requirements
- Python ≥ 3.12
- An X11 server and
$DISPLAY(or an explicit URI)
License
GPLv3 or later — see LICENSE.
Author
José Tiago Macara Coutinho https://codeberg.org/tiagocoutinho
Release files for aioxlib 0.7.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aioxlib-0.7.1.tar.gz | 131.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aioxlib-0.7.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 217.2 kB
Release files / aioxlib-0.7.1.tar.gz
| Download URL | aioxlib-0.7.1.tar.gz |
|---|---|
| Size | 131.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e85ec30b7077ab5b42cf262245868c404f320502848dcdf0a02fcbd7904b58ed
|
|
BLAKE2b-256 checksum How to use checksums |
3a521abe0cc058d2429e8dda1c6325759785479bc1bdf0e76cf591f85c455049
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.9
|
Release files / aioxlib-0.7.1-py3-none-any.whl
| Download URL | aioxlib-0.7.1-py3-none-any.whl |
|---|---|
| Size | 85.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
413d3d0f06d9957f394bcf364be784954608d3fbe8bad86520359f063a8fcaa5
|
|
BLAKE2b-256 checksum How to use checksums |
8a574b52b9bc74920a4f05a17216866c03c5e5952de7dae1215c011f100b62ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.9
|