Project Icon

websockets

Python WebSocket库 提供高性能和简洁API

websockets是一个Python库,用于构建WebSocket服务器和客户端。它基于asyncio框架,提供协程式API,支持asyncio、threading和Sans-I/O实现。该库注重正确性、简洁性、稳健性和性能,经过严格测试,适用于生产环境。websockets针对内存使用进行了优化,为开发者提供简单而强大的工具,以便专注于应用程序逻辑开发。

.. image:: logo/horizontal.svg :width: 480px :alt: websockets

|licence| |version| |pyversions| |tests| |docs| |openssf|

.. |licence| image:: https://img.shields.io/pypi/l/websockets.svg :target: https://pypi.python.org/pypi/websockets

.. |version| image:: https://img.shields.io/pypi/v/websockets.svg :target: https://pypi.python.org/pypi/websockets

.. |pyversions| image:: https://img.shields.io/pypi/pyversions/websockets.svg :target: https://pypi.python.org/pypi/websockets

.. |tests| image:: https://img.shields.io/github/checks-status/python-websockets/websockets/main?label=tests :target: https://github.com/python-websockets/websockets/actions/workflows/tests.yml

.. |docs| image:: https://img.shields.io/readthedocs/websockets.svg :target: https://websockets.readthedocs.io/

.. |openssf| image:: https://bestpractices.coreinfrastructure.org/projects/6475/badge :target: https://bestpractices.coreinfrastructure.org/projects/6475

什么是 websockets

websockets 是一个用于在 Python 中构建 WebSocket_ 服务器和客户端的库,注重正确性、简洁性、稳健性和性能。

.. _WebSocket: https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API

基于 Python 标准异步 I/O 框架 asyncio 构建,默认实现提供了一个优雅的基于协程的 API。

还提供了基于 threading 的实现和一个 Sans-I/O 实现。

文档可在 Read the Docs 上查阅。<https://websockets.readthedocs.io/>_

以下是使用 asyncio API 的回显服务器示例:

.. code:: python

#!/usr/bin/env python

import asyncio
from websockets.server import serve

async def echo(websocket):
    async for message in websocket:
        await websocket.send(message)

async def main():
    async with serve(echo, "localhost", 8765):
        await asyncio.get_running_loop().create_future()  # 永远运行

asyncio.run(main())

以下是客户端使用 threading API 发送和接收消息的示例:

.. code:: python

#!/usr/bin/env python

from websockets.sync.client import connect

def hello():
    with connect("ws://localhost:8765") as websocket:
        websocket.send("Hello world!")
        message = websocket.recv()
        print(f"收到: {message}")

hello()

看起来不错吧?

从教程开始吧!<https://websockets.readthedocs.io/en/stable/intro/index.html>_

.. raw:: html

<hr>
<img align="left" height="150" width="150" src="https://yellow-cdn.veclightyear.com/835a84d5/de76c456-c59f-42af-9b41-28b83fbb4179.png">
<h3 align="center"><i>企业版 websockets</i></h3>
<p align="center"><i>作为 Tidelift 订阅的一部分提供</i></p>
<p align="center"><i>websockets 的维护者和数千个其他包的维护者正在与 Tidelift 合作,为您用于构建应用程序的开源依赖项提供商业支持和维护。节省时间,降低风险,改善代码健康,同时向您使用的确切依赖项的维护者付费。<a href="https://tidelift.com/subscription/pkg/pypi-websockets?utm_source=pypi-websockets&utm_medium=referral&utm_campaign=readme">了解更多。</a></i></p>
<hr>
<p>(如果您为 <code>websockets</code> 做出贡献并希望成为官方支持提供者,请<a href="https://fractalideas.com/">告诉我</a>。)</p>

为什么我应该使用 websockets

websockets 的开发遵循四个原则:

  1. 正确性websockets 经过大量测试,以确保符合 :rfc:6455。持续集成在 100% 分支覆盖率下才能通过。

  2. 简洁性:您只需要理解 msg = await ws.recv()await ws.send(msg)websockets 负责管理连接,让您可以专注于应用程序。

  3. 稳健性websockets 是为生产环境而构建的。例如,在反压问题在 Python 社区广为人知之前,它是唯一一个正确处理反压的库。

  4. 性能:内存使用经过优化且可配置。C 扩展加速了昂贵的操作。它针对 Linux、macOS 和 Windows 进行了预编译,并为每个系统和 Python 版本打包成 wheel 格式。

文档是项目中的一等公民。前往 Read the Docs_ 亲自体验。

.. _Read the Docs: https://websockets.readthedocs.io/ .. _正确处理反压: https://vorpus.org/blog/some-thoughts-on-asynchronous-api-design-in-a-post-asyncawait-world/#websocket-servers

为什么我不应该使用 websockets

  • 如果您更喜欢回调而不是协程:websockets 的创建目的是为 Python 中管理 WebSocket 连接提供最佳的基于协程的 API。如果需要基于回调的 API,请选择其他库。

  • 如果您正在寻找混合 HTTP / WebSocket 库:websockets 旨在成为 :rfc:6455:WebSocket 协议和 :rfc:7692:WebSocket 压缩扩展的优秀实现。它对 HTTP 的支持是最小的 —— 仅足够进行 HTTP 健康检查。

    如果您想在同一服务器中同时使用两者,请查看在 websockets 基础上构建的支持 WebSocket 连接的 HTTP 框架,如 Sanic_。

.. _Sanic: https://sanicframework.org/en/

还有什么?

欢迎提交错误报告、补丁和建议!

要报告安全漏洞,请使用 Tidelift 安全联系方式_。Tidelift 将协调修复和披露。

.. _Tidelift 安全联系方式: https://tidelift.com/security

对于其他任何事情,请提交 issue_ 或发送 pull request_。

.. _issue: https://github.com/python-websockets/websockets/issues/new .. _pull request: https://github.com/python-websockets/websockets/compare/

参与者必须遵守 贡献者契约行为准则_。

.. _贡献者契约行为准则: https://github.com/python-websockets/websockets/blob/main/CODE_OF_CONDUCT.md

websockets 根据 BSD 许可证_ 发布。

.. _BSD 许可证: https://github.com/python-websockets/websockets/blob/main/LICENSE

项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

稿定AI

稿定设计 是一个多功能的在线设计和创意平台,提供广泛的设计工具和资源,以满足不同用户的需求。从专业的图形设计师到普通用户,无论是进行图片处理、智能抠图、H5页面制作还是视频剪辑,稿定设计都能提供简单、高效的解决方案。该平台以其用户友好的界面和强大的功能集合,帮助用户轻松实现创意设计。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号