Skip to content

rapidsockets/python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RapidSockets Python SDK

Introduction

This is the official Software Development Kit for Python to interact with the RapidSockets real-time messaging platform.

Installation

pip install rapidsockets

Quickstart

from rapidsockets import RapidSockets
import time

# initialize and open a connection to the RapidSockets Gateway
rs = RapidSockets({
    'key': 'your multi key'
})

# the callback function run on a new message to channel "mytest"
def mytest(packet):
    print(packet)

# start listening for new messages on channel "mytest"
rs.subscribe({
    'channel': 'mytest',
    'callback': mytest
})

# as a test, publish messages to channel "mytest" every two seconds
while True:
    rs.publish({
        'channel': 'mytest',
        'message': 'test message'
    })
    time.sleep(2)

Development specific notes

# build test wheel
python3 setup.py bdist_wheel

# install test wheel
python3 -m pip install dist/rapidsockets-0.0.5-py3-none-any.whl

# upload to pypi
python3 -m twine upload dist/rapidsockets-0.0.5-py3-none-any.whl

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages