Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 315 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 315 Bytes

RAH protocol wrapper in python

Installation

git clone https://github.com/vicharak-in/pyrah
sudo python3 setup.py install

Usage

import pyrah

APPID = 3

pyrah.rah_write(APPID, b"Hello World!")
data = pyrah.rah_read(APPID, 10) # Here 10 is length of data count we need
print(data)