Simple SignalR client for Python
Project description
Python client proxy for SignalR.
Requirements
Install the following prerequisites using pip:
gevent
sseclient
websocket-client
The gevent package in turn requires Python headers. In Debian based distributions (such as Ubuntu and Raspbian) they are called python-dev.
Compatibility
Only compatible with Python 2, not Python 3.
Usage
Here is sample usage:
#create a connection connection = Connection(url, session) #start a connection connection.start() #add a handler to process notifications to the connection connection.handlers += lambda data: print 'Connection: new notification.', data #get chat hub chat_hub = connection.hub('chat') #create new chat message handler def message_received(message): print 'Hub: New message.', message #receive new chat messages from the hub chat_hub.client.on('message_received', message_received) #send a new message to the hub chat_hub.server.invoke('send_message', 'Hello!') #do not receive new messages chat_hub.client.off('message_received', message_received) #close the connection connection.close()
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
signalr-client-0.0.3.zip
(9.1 kB
view details)
File details
Details for the file signalr-client-0.0.3.zip
.
File metadata
- Download URL: signalr-client-0.0.3.zip
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 140763d9acac9212d7d72781e2f37812445e404f56cd7ebacabd5ea587ae9f31 |
|
MD5 | 5ac3309fb19ff65dad9fbbaa303de786 |
|
BLAKE2b-256 | 6aff1c07637473dd24148899becf26d5f2aaee8939ba725764e95152eca91149 |