Skip to content

hnyaoqingping/asyncwebsockets

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

asyncwebsockets

asyncwebsockets is a curio + trio compatible library for connecting and serving websockets.

Installation

To install the latest stable version:

$ pip install asyncwebsockets

To install the latest development version:

$ pip install git+https://github.com/SunDwarf/asyncwebsockets.git#egg=asyncwebsockets

Basic Usage

import multio

from asyncwebsockets.client import connect_websocket
from asyncwebsockets.ws import WebsocketConnectionEstablished, WebsocketBytesMessage

async def test():
    sock = await connect_websocket("wss://echo.websocket.org", reconnecting=False)
    async for message in sock:
        print("Event received", message)
        if isinstance(message, WebsocketConnectionEstablished):
            await sock.send_message(b"test")

        elif isinstance(message, WebsocketBytesMessage):
            print("Got response:", message.data)
            await sock.close(code=1000, reason="Thank you!")


multio.init("curio")
multio.run(main)

About

Asynchronous websockets

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%