Skip to main content

A better API for asynchronous UDP

Project description

AioUDP

AioUDP Banner

A better API for asynchronous UDP

Poetry Code style: black Ruff Imports: isort Checked with mypy codecov

Documentation Status CI PyPI - Python Version PyPI PyPI - License

A websockets-like API for UDP

Here's an example echo server:

import asyncio
import signal

import aioudp


async def main():
    async def handler(connection):
        async for message in connection:
            await connection.send(message)

    loop = asyncio.get_running_loop()
    stop = loop.create_future()
    # Optional. This is for properly exiting the server when Ctrl-C is pressed
    # or when the process is killed/terminated
    loop.add_signal_handler(signal.SIGTERM, stop.set_result, None)
    loop.add_signal_handler(signal.SIGINT, stop.set_result, None)

    # Serve the server
    async with aioudp.serve("localhost", 9999, handler):
        await stop  # Serve forever

if __name__ == '__main__':
    asyncio.run(main())

And a client to connect to the server:

import asyncio

import aioudp


async def main():
    async with aioudp.connect("localhost", 9999) as connection:
        await connection.send(b"Hello world!")
        assert await connection.recv() == b"Hello world!"

if __name__ == '__main__':
    asyncio.run(main())

Installation

You can get this project via pip

$ pip install aioudp

Or, if you're using Poetry

$ poetry add aioudp

[!NOTE] This library provides no other abstractions over the existing UDP interface in asyncio other than the async/await-based API. This means there is no implicit protocol handled in this library such as QUIC. You must write your own, or find another library.

See also

  • AnyIO, a broader asynchronous networking and concurrency library for abstracting over any async IO implementation. It has a similar API (which I didn't know about before I wrote this library)
  • WebSockets, a library for Python to interact with WebSockets. Its API heavily inspired the design of AioUDP.
  • QUIC, a faster protocol similar to TCP, built on UDP.
  • AioQUIC, a Python implementation of QUIC.

License

Copyright © 2021, Bryan Hu

This project is licensed under the GNU GPL v3+.

In short, this means you can do anything with it (distribute, modify, sell) but if you were to publish your changes, you must make the source code and build instructions readily available.

If you are a company using this project and want an exception, email me at thatxliner@gmail.com and we can discuss.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioudp-2.0.0.tar.gz (20.2 kB view details)

Uploaded Source

Built Distribution

aioudp-2.0.0-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file aioudp-2.0.0.tar.gz.

File metadata

  • Download URL: aioudp-2.0.0.tar.gz
  • Upload date:
  • Size: 20.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aioudp-2.0.0.tar.gz
Algorithm Hash digest
SHA256 b38ddb1fac433ec8fa209e1aa2c83907c9d805af08d8a1b5a8e7983df94137c8
MD5 91fa0d43cffec029886bb256b9db3a48
BLAKE2b-256 ec4f0e9b87b80d801d06d3c4ad8fbd3cf46bb79162d7e842986ee4fc1f206d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioudp-2.0.0.tar.gz:

Publisher: release.yml on ThatXliner/aioudp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioudp-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: aioudp-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for aioudp-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 78c4f8ca0d9617f2138514d4cc316caad3d19f2799bf6e3a60acce848d07c5b4
MD5 663f64cd1eed5cb6cc644302fa31c926
BLAKE2b-256 2719e256c486757b66af54fb2c600bfab2679d14768061bb34bfdea60719dc6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioudp-2.0.0-py3-none-any.whl:

Publisher: release.yml on ThatXliner/aioudp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page