Python implementation of socket.io-emitter.
Project description
A Python implementation of socket.io-emitter.
socket.io provides a hook point to easily allow you to emit events to browsers from anywhere so socket.io-python-emitter communicates with socket.io servers through redis.
We made some changes, compatible socket.io-redis 0.2.0 and socket.io 0.1.4.
How to use
Install via pip
pip install socket.io-emitter
from socket_io_emitter import Emitter
io=Emitter({'host': 'localhost', 'port':6379})
io.Emit('broadcast event','Hello from socket.io-python-emitter')
API
Emitter(opts)
The following options are allowed:
- client: is a redis-py compatible client
This argument is optional.
key: the name of the key to pub/sub events on as prefix (socket.io)
host: host to connect to redis on (localhost)
port: port to connect to redis on (6379)
If you don’t want to supply a redis client object, and want socket.io-python-emitter to initialize one for you, make sure to supply the host and port options.
Specifies a specific room that you want to emit to.
Emitter#In(room):Emitter
io=Emitter({'host': 'localhost', 'port':6379})
io.In("room-name").Emit("news","Hello from python emitter");
Emitter#To(room):Emitter
io=Emitter({'host': 'localhost', 'port':6379})
io.To("room-name").Emit("news","Hello from python emitter");
We are flattening the room parameter from [] and *argv, so you can also send to several rooms like this (both examples are valid).
io=Emitter({'host': 'localhost', 'port':6379})
io.To(["room1", "room2"]).Emit("news","Hello from python emitter");
io.To("room1", "room2").Emit("news","Hello from python emitter");
Emitter#Of(namespace):Emitter
Specifies a specific namespace that you want to emit to.
io=Emitter({'host': 'localhost', 'port':6379})
io.Of("/nsp").In("room-name").Emit("news","Hello from python emitter");
License
MIT License
Copyright (c) 2014 Ziya SARIKAYA
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Open Source Projects in Use
redis-py by Andy McCurdy @andymccurdy
msgpack-python by MessagePack
@ziλasal & @abdullahselek
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file socket.io_emitter-0.1.5.1-py2.py3-none-any.whl
.
File metadata
- Download URL: socket.io_emitter-0.1.5.1-py2.py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2c245195a100db79edc5bacbab5ba261c1a449ec5d1849296f93d48690f3028 |
|
MD5 | f2310f6d301187fa9fa85015c1bde845 |
|
BLAKE2b-256 | 7ce7c432970aaaf85158f39e013afec587031bae1ee8de2ced7e4bbf779ee610 |