noneflow[bot] 033c90dd74
Some checks failed
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, macos-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, windows-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.11) (push) Failing after 2s
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, macos-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.10) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.11) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.12) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v2, windows-latest, 3.9) (push) Waiting to run
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.12) (push) Failing after 6m59s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.10) (push) Failing after 7m7s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.10) (push) Failing after 5m14s
Code Coverage / Test Coverage (pydantic-v1, ubuntu-latest, 3.9) (push) Failing after 5m42s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.11) (push) Failing after 4m51s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.12) (push) Failing after 7m12s
Code Coverage / Test Coverage (pydantic-v2, ubuntu-latest, 3.9) (push) Failing after 6m33s
Pyright Lint / Pyright Lint (pydantic-v1) (push) Failing after 8m12s
Ruff Lint / Ruff Lint (push) Successful in 43s
Pyright Lint / Pyright Lint (pydantic-v2) (push) Failing after 6m56s
Site Deploy / publish (push) Failing after 7m21s
🔖 Release 2.4.1
2024-12-25 07:21:05 +00:00

1.9 KiB

mdx sidebar_position description
format
md
4 nonebot.drivers.websockets 模块

nonebot.drivers.websockets

websockets 驱动适配

nb driver install websockets
# 或者
pip install nonebot2[websockets]

:::tip 提示 本驱动仅支持客户端 WebSocket 连接 :::

def catch_closed(func)

  • 参数

    • func ((P) -> Coroutine[Any, Any, T])
  • 返回

    • (P) -> Coroutine[Any, Any, T]

class Mixin(<auto>)

  • 说明: Websockets Mixin

  • 参数

    auto

method websocket(setup)

class WebSocket(*, request, websocket)

  • 说明: Websockets WebSocket Wrapper

  • 参数

    • request (Request)

    • websocket (WebSocketClientProtocol)

async method accept()

  • 参数

    empty

  • 返回

    • untyped

async method close(code=1000, reason="")

  • 参数

    • code (int)

    • reason (str)

  • 返回

    • untyped

async method receive()

  • 参数

    empty

  • 返回

    • str | bytes

async method receive_text()

  • 参数

    empty

  • 返回

    • str

async method receive_bytes()

  • 参数

    empty

  • 返回

    • bytes

async method send_text(data)

  • 参数

    • data (str)
  • 返回

    • None

async method send_bytes(data)

  • 参数

    • data (bytes)
  • 返回

    • None

class Driver(env, config)