معرفی شرکت ها


aioudp-0.1.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A better API for asynchronous UDP
ویژگی مقدار
سیستم عامل -
نام فایل aioudp-0.1.1
نام aioudp
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Bryan Hu
ایمیل نویسنده bryan.hu.2020@gmail.com
آدرس صفحه اصلی https://github.com/ThatXliner/aioudp
آدرس اینترنتی https://pypi.org/project/aioudp/
مجوز GPL-3.0-or-later
# AioUDP [![Documentation Status](https://readthedocs.org/projects/aioudp/badge/?version=latest)](https://aioudp.readthedocs.io/en/latest/?badge=latest) [![codecov](https://codecov.io/gh/ThatXliner/aioudp/branch/main/graph/badge.svg?token=xZ7HVG8Owm)](https://codecov.io/gh/ThatXliner/aioudp) [![CI](https://github.com/ThatXliner/aioudp/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ThatXliner/aioudp/actions/workflows/ci.yml) > A better API for asynchronous UDP A [websockets](https://websockets.readthedocs.io/en/stable/index.html)-like API for [UDP](https://en.wikipedia.org/wiki/User_Datagram_Protocol) Here's an example echo server: ```py import asyncio import signal import aioudp async def main(): async def handler(connection): async for message in connection: await connection.send(message) # Optional. This is for properly exiting the server when Ctrl-C is pressed # or when the process is killed/terminated loop = asyncio.get_running_loop() stop = loop.create_future() 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: ```py 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()) ``` 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. You must write your own.


زبان مورد نیاز

مقدار نام
>=3.7,<4.0 Python


نحوه نصب


نصب پکیج whl aioudp-0.1.1:

    pip install aioudp-0.1.1.whl


نصب پکیج tar.gz aioudp-0.1.1:

    pip install aioudp-0.1.1.tar.gz