Skip to main content

aioxlib

Human-friendly asyncio interface to the X11 protocol

PyPI Python Versions License: GPL-3.0

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

Installation

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.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aioxlib 0.3.0
File Size Uploaded
aioxlib-0.3.0.tar.gz 86.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for aioxlib 0.3.0
File Interpreter ABI Platform
aioxlib-0.3.0-py3-none-any.whl Python 3 none any Details

Total release size: 141.5 kB

Release files / aioxlib-0.3.0.tar.gz

Download URL aioxlib-0.3.0.tar.gz
Size 86.3 kB
Tags Source
SHA-256 checksum
How to use checksums
786642b0aea05a426b36c42864325e9f5b55cb2152ad1d5736985f025b36f92b
BLAKE2b-256 checksum
How to use checksums
486e8665bcbe4bfb4ab0e3bbbee5ab190e023f5f3c14c1d5003f1b5a7e6b6090
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.13

Release files / aioxlib-0.3.0-py3-none-any.whl

Download URL aioxlib-0.3.0-py3-none-any.whl
Size 55.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
b584987792cd3bd313fc9935ffee37defddf95e7174a7853d3205b0a77c1ed5c
BLAKE2b-256 checksum
How to use checksums
2e54713d2c7b23addf686c386864576819ca6944d315bf2a7210ddfdbcd7a24a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.13

Release history Release notifications | RSS feed

0.10.0

2 release files

0.9.0

2 release files

0.8.0

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.0

2 release files

This release

0.3.0 This release

2 release files

0.2.0

2 release files

0.1.0

2 release files

0.0.8

2 release files

0.0.7

2 release files

0.0.6

2 release files

0.0.5

2 release files

0.0.4

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page