Skip to content

Unofficial Python SDK for the Pusher ChatKit Server APIs

Notifications You must be signed in to change notification settings

zikphil/chatkit-server-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chatkit-server-python

The Unofficial Python server SDK for Pusher Chatkit.

Installation

$ pip install pusher-chatkit-server

Usage

from pusher_chatkit import PusherChatKit
from pusher_chatkit.backends import RequestsBackend, TornadoBackend

chatkit = PusherChatKit(
    'instance-locator',
    'api-key',
    RequestsBackend or TornadoBackend
)

# Requests Example
data = chatkit.create_user(...)
print(data)

# Tornado Example
data = await chatkit.create_user(...)
print(data)

Credits

This work is sponsored by LedgerX

About

Unofficial Python SDK for the Pusher ChatKit Server APIs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages