https://github.com/srijanshetty/py-signalr-client
https://github.com/srijanshetty/py-signalr-client
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/srijanshetty/py-signalr-client
- Owner: srijanshetty
- License: mit
- Created: 2022-04-06T13:02:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T14:25:57.000Z (about 3 years ago)
- Last Synced: 2025-02-18T05:18:06.176Z (2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-signalr-client
**Python** signalR client using asyncio.
It's mainly based on [TargetProcess signalR client](https://github.com/TargetProcess/signalr-client-py) which uses gevent.# Performance and supplemental libraries
* For better performance users can install `uvloop` and `ujson` which are automatically detected.
* Users can pass a custom session to the client, i.e a [`cfscrape`](https://github.com/Anorov/cloudflare-scrape) session in order to bypass Cloudflare.# Compatibility
Asyncio requires Python 3.10+.# Installation
#### Pypi (most stable)
```python
pip install signalr-client-aio
```
#### Github (master)
```python
pip install git+https://github.com/srijanshetty/py-signalr-client.git
```