Skip to main content

一款基于CheeseAPI的升级款Websocket插件。

Project description

CheeseAPI_Websocket

介绍

一款基于CheeseAPI的升级款Websocket插件,它能够解决在多worker下websocket的通讯问题,前提是需要引入redis。

安装

系统要求:Unix,例如Linux、Mac等;不支持Windows,若有需要请使用Windows的WSL运行程序。

pip install CheeseAPI_Websocket

使用

CheeseAPI_Websocket是CheeseAPI的一款插件,它需要依赖于CheeseAPI才能运行。

import threading, time

from CheeseAPI import app, WebsocketClient, Response
from CheeseAPI_Websocket import websocket

app.modules.append('CheeseAPI_Websocket') # 加入模块

websocket.init() # 初始化redis连接

@app.route.websocket('/')
class Test(WebsocketClient):
    ...

# 创建一个线程,在非协程环境下发送Websocket
@app.handle.server_afterStartingHandle
def test():
    def test0():
        while True:
            websocket.send('/', '你好')
            time.sleep(1)
threading.Thread(target = test, daemon = True).start()

# 在协程环境下发送Websocket
@app.route.post('/websocket')
async def test1():
    await websocket.async_send('/', '世界')
    return Response()

app.run()

若传输的数据量过大,请使用原生的send方法,以避免为redis带来过大的负担。

Websocket

from CheeseAPI_Websocket import websocket

websocket.init(host: IPv4 = app.server.host, port: Port = 6379, db: NonNegativeInt = 0)

初始化redis连接。

websocket.send(path: str, message: str | bytes | dict | list, sid: str | List[str] | Literal['*'] = '*')

发送消息,支持广播。

await websocket.async_send(path: str, message: str | bytes | dict | list, sid: str | List[str] | Literal['*'] = '*')

发送消息,支持广播。

websocket.close(path: str, sid: str | List[str] | Literal['*'] = '*')

关闭连接,支持广播。

await websocket.async_close(path: str, sid: str | List[str] | Literal['*'] = '*')

关闭连接,支持广播。

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cheeseapi_websocket-1.0.6.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

cheeseapi_websocket-1.0.6-py2.py3-none-any.whl (4.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file cheeseapi_websocket-1.0.6.tar.gz.

File metadata

  • Download URL: cheeseapi_websocket-1.0.6.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cheeseapi_websocket-1.0.6.tar.gz
Algorithm Hash digest
SHA256 77e5bc9ceae6c764b88a5b1b276b770dd1769e1b02cd3b458e1ea66bee690ed9
MD5 5711ad73ae9193aa34b1e08ff16c0301
BLAKE2b-256 ca1717dd5b03d8e1fe75496dd8c79e4e9fadcda56db1b95d581ea5c4b0b9c9ea

See more details on using hashes here.

File details

Details for the file cheeseapi_websocket-1.0.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for cheeseapi_websocket-1.0.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 11da4e5e435752e1ed60411be89065c486ee5983686d4182977bdb917a9deb9c
MD5 8ad3080a60a26323867d6f11f07db2fa
BLAKE2b-256 251edaeb5f698e134ff97e187f622ffb8af2fb333f5c65d477b736df6c0877b2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page