Python client for PuSuEngine
Project description
Client for using the PuSu Engine server from Python. Probably much better suitable for sending than receiving, but both should work.
Threaded example
If you want immediate delivery and are ok with your callbacks getting called from another thread, you can use the threaded client.
from pypusu.threaded import PuSuClient
from time import sleep
if __name__ == "__main__":
c = PuSuClient("ws://127.0.0.1:55000")
count = 0
def listener(msg):
global count
count += 1
c.authorize("foo")
c.subscribe("channel.1", listener)
c.publish("channel.1", {"foo": "bar"})
sleep(30)
print(count)
Polling example
If your callbacks getting called from another thread is an issue, you can use the polling client. Internally it still uses threads, but it will not deliver the messages to your callbacks until you call poll().
from pypusu.polling import PuSuClient
from time import sleep
if __name__ == "__main__":
c = PuSuClient("ws://127.0.0.1:55000")
count = 0
def listener(msg):
global count
count += 1
c.authorize("foo")
c.subscribe("channel.1", listener)
c.publish("channel.1", {"foo": "bar"})
for i in range(0, 30):
sleep(1)
c.poll()
print(count)
Dependencies
Not quite sure how to deal with dependencies yet, so for now you’ll have to install them separately.
Both threaded and polling client need the following in your requirements.txt:
ws4py==0.3.5 wsaccel==0.6.2
Or you can try:
pip install ws4py wsaccel
License
Short version: MIT + New BSD.
Long version: Read the LICENSE.md -file.
Uploading to PyPi
You can’t really do that without the appropriate username + password information, but I’m saving this here because I’ll just forget.
python setup.py sdist upload -r pypitest python setup.py sdist upload -r pypi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pypusu-1.0.6.tar.gz
.
File metadata
- Download URL: pypusu-1.0.6.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf649012cf4830f2fe981ff07e40fdbdb1f66b92e29ac9ede9415ce3860303d5 |
|
MD5 | 3a1258882522e6b880e4ba5a665190af |
|
BLAKE2b-256 | 95a32dc2ef22b406a943fbecee78ed295fa0ec4405ba9e647ec16043b594ab7a |
File details
Details for the file pypusu-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: pypusu-1.0.6-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25cb36b4131ba1aa9979f2b7abdb8d46256aefa661db49648bc3b39dff1fba1e |
|
MD5 | 014e1f2be1b0ec5647d089901a3a5898 |
|
BLAKE2b-256 | 124b42d4057643d6b40418163c51ef3d9b3a6c0f1e228278619d8ba58b24ff89 |