معرفی شرکت ها


aiosignalrcore-0.9.2.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Async fork of Python SignalR Core client(json and messagepack), with invocation auth and two way streaming. Compatible with azure / serverless functions. Also with automatic reconnect and manually reconnect.
ویژگی مقدار
سیستم عامل -
نام فایل aiosignalrcore-0.9.2.2
نام aiosignalrcore
نسخه کتابخانه 0.9.2.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده mandrewcito
ایمیل نویسنده anbaalo@gmail.com
آدرس صفحه اصلی https://github.com/dipdup-net/aiosignalrcore
آدرس اینترنتی https://pypi.org/project/aiosignalrcore/
مجوز -
# SignalR core client (async fork) [![Pypi](https://img.shields.io/pypi/v/aiosignalrcore.svg)](https://pypi.org/project/aiosignalrcore/) This is asyncio version of the original SignalR Core [library](https://github.com/mandrewcito/signalrcore). The main difference is that `websocket` library is replaced with asyncio-compatabile `websockets`. All future changes in the original repo will be merged to this fork inheriting the major and minor version number. ## Installation ``` pip install aiosignalrcore ``` ## Usage Check out the [docs](https://github.com/mandrewcito/signalrcore) of the original library. The names of all modules, classes, and methods are preserved. ### Async example ```python import asyncio import logging from aiosignalrcore.hub_connection_builder import HubConnectionBuilder from aiosignalrcore.messages.completion_message import CompletionMessage from aiosignalrcore.transport.websockets.connection import ConnectionState hub_connection = ( HubConnectionBuilder() .with_url('%URL%') .with_automatic_reconnect( { "type": "raw", "keep_alive_interval": 10, "reconnect_interval": 5, "max_attempts": 5, } ) .build() ) async def on_connect(): logging.info('Connected to the server') while hub_connection.transport.state != ConnectionState.connected: await asyncio.sleep(0.1) await hub_connection.send("SendMessage", []) async def on_message(message): pass def on_error(self, message: CompletionMessage): raise Exception(message.error) hub_connection.on_open(on_connect) hub_connection.on_error(on_error) hub_connection.on("Message", on_message) await hub_connection.start() try: while hub_connection.transport.state == ConnectionState.connected: await asyncio.sleep(1) except KeyboardInterrupt: pass finally: await hub_connection.stop() ```


نیازمندی

مقدار نام
==1.0.2 msgpack
>=2.22.0 requests
>=8.1,<9.0 websockets


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

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


نحوه نصب


نصب پکیج whl aiosignalrcore-0.9.2.2:

    pip install aiosignalrcore-0.9.2.2.whl


نصب پکیج tar.gz aiosignalrcore-0.9.2.2:

    pip install aiosignalrcore-0.9.2.2.tar.gz