A Python SDK for Rowma
Project description
RowmaPy
The Rowma SDK for Python.
Usage
Publish
from rowmapy import Rowma
rowma = Rowma()
rowma.connect()
robot_uuid = 'xxxx-xxxx-xxxx'
rowma.publish(robot_uuid, '/chatter', { "data": "topic from python" })
Subscribe
from rowmapy import Rowma
rowma = Rowma()
rowma.connect()
robot_uuid = 'xxxx-xxxx-xxxx'
# Transfer /chatter topic in xxxx-xxxx-xxxx to this script
rowma.set_topic_route(robot_uuid, 'application', rowma.uuid, '/chatter')
def on_chatter(msg):
print(msg)
rowma.subscribe('/chatter', on_chatter)
Development
$ python setup.py sdist
$ pip install -U .
Publish
rm -rf dist/*
python setup.py sdist
pip install wheel twine
twine upload dist/*
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
rowmapy-1.0.3.tar.gz
(2.7 kB
view details)
File details
Details for the file rowmapy-1.0.3.tar.gz.
File metadata
- Download URL: rowmapy-1.0.3.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f467a60a6a67bd25d1794366528d8ce96ff1484d457b5d446c46bc35b93b539a
|
|
| MD5 |
a4ebf6424fac3b6ae824b07b6546d38d
|
|
| BLAKE2b-256 |
c456c9c4fe60afe18b681a5cfc0bfe06559231ff34e168c166a2016565e7774c
|