Skip to content

🐍 Python library to interact with Zaun API

Notifications You must be signed in to change notification settings

zaunchat/zaun.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

14 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

zaun.py 🐍

Usage/ Rest

from zaun import rest

client = rest.SyncREST()
client.set_token("TOKEN")

res = client.get('/users/@me')

print(res)

Usage/ Client

import zaun

client = zaun.Client()

@client.listen
async def on_message(message: zaun.Message) -> None:
    print(message.content)

client.login("TOKEN")

Other libs for Zaun

About

🐍 Python library to interact with Zaun API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors 4

  •  
  •  
  •  
  •  

Languages