New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

asyncudp

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asyncudp

Asyncio high level UDP sockets.

0.11.0
PyPI
Maintainers
1

Asyncio high level UDP sockets

Asyncio high level UDP sockets.

Project homepage: https://github.com/eerimoq/asyncudp

Documentation: https://asyncudp.readthedocs.org/en/latest

Installation

.. code-block:: python

$ pip install asyncudp

Example client

.. code-block:: python

import asyncio import asyncudp

async def main(): sock = await asyncudp.create_socket(remote_addr=('127.0.0.1', 9999)) sock.sendto(b'Hello!') print(await sock.recvfrom()) sock.close()

asyncio.run(main())

Example server

.. code-block:: python

import asyncio import asyncudp

async def main(): sock = await asyncudp.create_socket(local_addr=('127.0.0.1', 9999))

   while True:
       data, addr = await sock.recvfrom()
       print(data, addr)
       sock.sendto(data, addr)

asyncio.run(main())

Test

.. code-block::

$ python3 -m unittest

Keywords

asyncio

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts