aiotieba


Nameaiotieba JSON
Version 4.4.4 PyPI version JSON
download
home_pageNone
SummaryAsynchronous I/O Client for Baidu Tieba
upload_time2024-04-20 10:22:59
maintainerNone
docs_urlNone
authorNone
requires_python<3.13,>=3.8
licenseNone
keywords baidu tieba
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
<a href="https://socialify.git.ci">
    <img src="https://user-images.githubusercontent.com/48282276/217530379-1348f7c5-7056-48f4-8c64-1c74caf5497c.svg">
</a>
</p>

<div align="center">
<p>
<a href="https://github.com/Starry-OvO/aiotieba/actions">
    <img src="https://img.shields.io/github/actions/workflow/status/Starry-OvO/aiotieba/CI.yml?branch=develop&label=CI&logo=github&style=flat-square" alt="GitHub Workflow Status">
</a>
<a href="https://pypi.org/project/aiotieba">
    <img src="https://img.shields.io/pypi/v/aiotieba?color=g&style=flat-square" alt="PyPI - Version">
</a>
<a href="https://pypi.org/project/aiotieba">
    <img src="https://img.shields.io/pypi/pyversions/aiotieba?style=flat-square" alt="PyPI - Python Version">
</a>
</p>
</div>

---

## 安装

```shell
pip install aiotieba
```

## 尝试一下

```python
import asyncio

import aiotieba


async def main():
    async with aiotieba.Client() as client:
        threads = await client.get_threads("天堂鸡汤")
        for thread in threads[3:6]:
            print(f"tid={thread.tid} text={thread.text}")


asyncio.run(main())
```

*输出样例*

```log
---
tid=8537603600 text=一人发一句最喜欢的游戏台词
楼主先来
很喜欢lol布隆说的“夜晚越黑暗,星星就越明亮”,尤其在当下这个有着诸多缺点的世界里,这句话让我感觉舒服了很多在人们已不再相信理想主义的至暗时刻,高擎炬火之人便显得更加重要,至少我会坚持我的理想
---
tid=8093410706 text=大概是剪切板里的一些有意思的话
今天看自己的剪切板快满了,稍微翻翻突然发现以前存的一些话还挺有意思,就放在这里啦
(咦,疑似水帖啊我)
---
tid=8537699088 text=记录一下自己人生第一次当“老师”的经历^_^
明天我带的孩子们就“毕业”了,第一次当老师我改变了很多也收获了很多,就想着给自己记录一下这段宝贵的经历:-)
```

继续阅读[**入门教程**](https://aiotieba.cc/tutorial/start)

## 项目特色

+ 收录[**数十个常用API**](https://github.com/Starry-OvO/aiotieba/tree/develop/aiotieba/api)
+ 类型注解全覆盖,方法注释全覆盖,内部命名统一
+ 支持protobuf序列化请求参数
+ 支持websocket接口
+ 与官方版本高度一致的密码学实现

## 友情链接

+ [TiebaManager(吧务管理器 有用户界面)](https://github.com/dog194/TiebaManager)
+ [基于aiotieba的高弹性吧务审查框架](https://github.com/Starry-OvO/aiotieba-reviewer)
+ [贴吧protobuf定义文件合集(更新至12.51.7.1)](https://github.com/n0099/tbclient.protobuf)
+ [TiebaLite 第三方安卓客户端(已停更)](https://github.com/HuanCheng65/TiebaLite/tree/4.0-dev)

## 特别鸣谢

<p align="center">
<a href="https://jb.gg/OpenSourceSupport">
    <img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg">
</a>
</p>

为本开源项目提供的免费产品授权

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aiotieba",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.8",
    "maintainer_email": null,
    "keywords": "baidu, tieba",
    "author": null,
    "author_email": "Starry-OvO <starry.qvq@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/14/29/b01799e45f22e55f7d6fec700363ee724973bdb5582b71b6a76d9a2fddda/aiotieba-4.4.4.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n<a href=\"https://socialify.git.ci\">\n    <img src=\"https://user-images.githubusercontent.com/48282276/217530379-1348f7c5-7056-48f4-8c64-1c74caf5497c.svg\">\n</a>\n</p>\n\n<div align=\"center\">\n<p>\n<a href=\"https://github.com/Starry-OvO/aiotieba/actions\">\n    <img src=\"https://img.shields.io/github/actions/workflow/status/Starry-OvO/aiotieba/CI.yml?branch=develop&label=CI&logo=github&style=flat-square\" alt=\"GitHub Workflow Status\">\n</a>\n<a href=\"https://pypi.org/project/aiotieba\">\n    <img src=\"https://img.shields.io/pypi/v/aiotieba?color=g&style=flat-square\" alt=\"PyPI - Version\">\n</a>\n<a href=\"https://pypi.org/project/aiotieba\">\n    <img src=\"https://img.shields.io/pypi/pyversions/aiotieba?style=flat-square\" alt=\"PyPI - Python Version\">\n</a>\n</p>\n</div>\n\n---\n\n## \u5b89\u88c5\n\n```shell\npip install aiotieba\n```\n\n## \u5c1d\u8bd5\u4e00\u4e0b\n\n```python\nimport asyncio\n\nimport aiotieba\n\n\nasync def main():\n    async with aiotieba.Client() as client:\n        threads = await client.get_threads(\"\u5929\u5802\u9e21\u6c64\")\n        for thread in threads[3:6]:\n            print(f\"tid={thread.tid} text={thread.text}\")\n\n\nasyncio.run(main())\n```\n\n*\u8f93\u51fa\u6837\u4f8b*\n\n```log\n---\ntid=8537603600 text=\u4e00\u4eba\u53d1\u4e00\u53e5\u6700\u559c\u6b22\u7684\u6e38\u620f\u53f0\u8bcd\n\u697c\u4e3b\u5148\u6765\n\u5f88\u559c\u6b22lol\u5e03\u9686\u8bf4\u7684\u201c\u591c\u665a\u8d8a\u9ed1\u6697\uff0c\u661f\u661f\u5c31\u8d8a\u660e\u4eae\u201d\uff0c\u5c24\u5176\u5728\u5f53\u4e0b\u8fd9\u4e2a\u6709\u7740\u8bf8\u591a\u7f3a\u70b9\u7684\u4e16\u754c\u91cc\uff0c\u8fd9\u53e5\u8bdd\u8ba9\u6211\u611f\u89c9\u8212\u670d\u4e86\u5f88\u591a\u5728\u4eba\u4eec\u5df2\u4e0d\u518d\u76f8\u4fe1\u7406\u60f3\u4e3b\u4e49\u7684\u81f3\u6697\u65f6\u523b\uff0c\u9ad8\u64ce\u70ac\u706b\u4e4b\u4eba\u4fbf\u663e\u5f97\u66f4\u52a0\u91cd\u8981\uff0c\u81f3\u5c11\u6211\u4f1a\u575a\u6301\u6211\u7684\u7406\u60f3\n---\ntid=8093410706 text=\u5927\u6982\u662f\u526a\u5207\u677f\u91cc\u7684\u4e00\u4e9b\u6709\u610f\u601d\u7684\u8bdd\n\u4eca\u5929\u770b\u81ea\u5df1\u7684\u526a\u5207\u677f\u5feb\u6ee1\u4e86\uff0c\u7a0d\u5fae\u7ffb\u7ffb\u7a81\u7136\u53d1\u73b0\u4ee5\u524d\u5b58\u7684\u4e00\u4e9b\u8bdd\u8fd8\u633a\u6709\u610f\u601d\uff0c\u5c31\u653e\u5728\u8fd9\u91cc\u5566\n\uff08\u54a6\uff0c\u7591\u4f3c\u6c34\u5e16\u554a\u6211\uff09\n---\ntid=8537699088 text=\u8bb0\u5f55\u4e00\u4e0b\u81ea\u5df1\u4eba\u751f\u7b2c\u4e00\u6b21\u5f53\u201c\u8001\u5e08\u201d\u7684\u7ecf\u5386^_^\n\u660e\u5929\u6211\u5e26\u7684\u5b69\u5b50\u4eec\u5c31\u201c\u6bd5\u4e1a\u201d\u4e86\uff0c\u7b2c\u4e00\u6b21\u5f53\u8001\u5e08\u6211\u6539\u53d8\u4e86\u5f88\u591a\u4e5f\u6536\u83b7\u4e86\u5f88\u591a\uff0c\u5c31\u60f3\u7740\u7ed9\u81ea\u5df1\u8bb0\u5f55\u4e00\u4e0b\u8fd9\u6bb5\u5b9d\u8d35\u7684\u7ecf\u5386:-)\n```\n\n\u7ee7\u7eed\u9605\u8bfb[**\u5165\u95e8\u6559\u7a0b**](https://aiotieba.cc/tutorial/start)\n\n## \u9879\u76ee\u7279\u8272\n\n+ \u6536\u5f55[**\u6570\u5341\u4e2a\u5e38\u7528API**](https://github.com/Starry-OvO/aiotieba/tree/develop/aiotieba/api)\n+ \u7c7b\u578b\u6ce8\u89e3\u5168\u8986\u76d6\uff0c\u65b9\u6cd5\u6ce8\u91ca\u5168\u8986\u76d6\uff0c\u5185\u90e8\u547d\u540d\u7edf\u4e00\n+ \u652f\u6301protobuf\u5e8f\u5217\u5316\u8bf7\u6c42\u53c2\u6570\n+ \u652f\u6301websocket\u63a5\u53e3\n+ \u4e0e\u5b98\u65b9\u7248\u672c\u9ad8\u5ea6\u4e00\u81f4\u7684\u5bc6\u7801\u5b66\u5b9e\u73b0\n\n## \u53cb\u60c5\u94fe\u63a5\n\n+ [TiebaManager\uff08\u5427\u52a1\u7ba1\u7406\u5668 \u6709\u7528\u6237\u754c\u9762\uff09](https://github.com/dog194/TiebaManager)\n+ [\u57fa\u4e8eaiotieba\u7684\u9ad8\u5f39\u6027\u5427\u52a1\u5ba1\u67e5\u6846\u67b6](https://github.com/Starry-OvO/aiotieba-reviewer)\n+ [\u8d34\u5427protobuf\u5b9a\u4e49\u6587\u4ef6\u5408\u96c6\uff08\u66f4\u65b0\u81f312.51.7.1\uff09](https://github.com/n0099/tbclient.protobuf)\n+ [TiebaLite \u7b2c\u4e09\u65b9\u5b89\u5353\u5ba2\u6237\u7aef\uff08\u5df2\u505c\u66f4\uff09](https://github.com/HuanCheng65/TiebaLite/tree/4.0-dev)\n\n## \u7279\u522b\u9e23\u8c22\n\n<p align=\"center\">\n<a href=\"https://jb.gg/OpenSourceSupport\">\n    <img src=\"https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg\">\n</a>\n</p>\n\n\u4e3a\u672c\u5f00\u6e90\u9879\u76ee\u63d0\u4f9b\u7684\u514d\u8d39\u4ea7\u54c1\u6388\u6743\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Asynchronous I/O Client for Baidu Tieba",
    "version": "4.4.4",
    "project_urls": {
        "Documentation": "https://aiotieba.cc/",
        "Repository": "https://github.com/Starry-OvO/aiotieba/"
    },
    "split_keywords": [
        "baidu",
        " tieba"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4420c4e6d63545894bc4476487187c9716087b449f5e4814d5838b5d1e222fb2",
                "md5": "56346704f2d523478b8a2b63047336cf",
                "sha256": "6f0002403ef99f4abc4e1d8dda434bf437d24e08ddbc2684ca1514a147d0a072"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56346704f2d523478b8a2b63047336cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 274201,
            "upload_time": "2024-04-20T10:22:11",
            "upload_time_iso_8601": "2024-04-20T10:22:11.296120Z",
            "url": "https://files.pythonhosted.org/packages/44/20/c4e6d63545894bc4476487187c9716087b449f5e4814d5838b5d1e222fb2/aiotieba-4.4.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6470c74c098c9bdfcb1cfb02766abd5ddda52b8c4ab62259ddf7d7b3a90bd216",
                "md5": "75ec39cad4cde35639d5084626bc2edd",
                "sha256": "d583bab1466a9c4f4e79da8b7d8970602fb7783d0fad430874d6fee00b46bf84"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75ec39cad4cde35639d5084626bc2edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 276800,
            "upload_time": "2024-04-20T10:22:13",
            "upload_time_iso_8601": "2024-04-20T10:22:13.588858Z",
            "url": "https://files.pythonhosted.org/packages/64/70/c74c098c9bdfcb1cfb02766abd5ddda52b8c4ab62259ddf7d7b3a90bd216/aiotieba-4.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcfd8cfa1d60c175e27ec4d50571fbe1084e828ad2860f64bbe8ad54b316ccb9",
                "md5": "e122849a29b16ceb937948fa995cba90",
                "sha256": "2326e961af43df15a7eab7538441cb23fe6880c80649b7d02543bff7feada633"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e122849a29b16ceb937948fa995cba90",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 276875,
            "upload_time": "2024-04-20T10:22:15",
            "upload_time_iso_8601": "2024-04-20T10:22:15.451580Z",
            "url": "https://files.pythonhosted.org/packages/dc/fd/8cfa1d60c175e27ec4d50571fbe1084e828ad2860f64bbe8ad54b316ccb9/aiotieba-4.4.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5e5fedd09a75ab1323eac3b5d61195c5d2170f2406125fd2b77fd5ea0140487",
                "md5": "d446fdbe1515cc4277ec2818abb5a54a",
                "sha256": "823eb24877db137f55473367f2b871914c88154262e5cde7b1c8d9af2e33075f"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d446fdbe1515cc4277ec2818abb5a54a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.13,>=3.8",
            "size": 260694,
            "upload_time": "2024-04-20T10:22:17",
            "upload_time_iso_8601": "2024-04-20T10:22:17.271723Z",
            "url": "https://files.pythonhosted.org/packages/a5/e5/fedd09a75ab1323eac3b5d61195c5d2170f2406125fd2b77fd5ea0140487/aiotieba-4.4.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc6a42877eab64b8ed7222d867049ab9917bd0e298b85ed9cfb1e4dfadee20eb",
                "md5": "4e1a538d390e3df7bc4dac6d8da3aa9c",
                "sha256": "77c9b48e88ee40ea825e64beabb87cdcbff12c7339b1ca59e9b3c19e1be8792d"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e1a538d390e3df7bc4dac6d8da3aa9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 274200,
            "upload_time": "2024-04-20T10:22:19",
            "upload_time_iso_8601": "2024-04-20T10:22:19.208035Z",
            "url": "https://files.pythonhosted.org/packages/fc/6a/42877eab64b8ed7222d867049ab9917bd0e298b85ed9cfb1e4dfadee20eb/aiotieba-4.4.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c771753d552b8f8a3c3ccbb148e5d2ea8ab99fcaf39dda9b169b37b502a5b4ce",
                "md5": "0a8940c66b732c90b099e8135c96b024",
                "sha256": "0c048a43aa76564b602b58a8ea1f57e796fc3906505e7238ec7cc5cfac5dcddb"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a8940c66b732c90b099e8135c96b024",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 276816,
            "upload_time": "2024-04-20T10:22:20",
            "upload_time_iso_8601": "2024-04-20T10:22:20.505562Z",
            "url": "https://files.pythonhosted.org/packages/c7/71/753d552b8f8a3c3ccbb148e5d2ea8ab99fcaf39dda9b169b37b502a5b4ce/aiotieba-4.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a1b705e8ca404766bc484d742852e0a1670a8860a89760e755f452b4b73a68c",
                "md5": "28fb20104ce7802b360619cf3d4a37c5",
                "sha256": "2ffa4e40d2a753628296f11a5f9973a522a488d9aeac4ae3ef392128d889a4fd"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28fb20104ce7802b360619cf3d4a37c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 276890,
            "upload_time": "2024-04-20T10:22:22",
            "upload_time_iso_8601": "2024-04-20T10:22:22.371208Z",
            "url": "https://files.pythonhosted.org/packages/2a/1b/705e8ca404766bc484d742852e0a1670a8860a89760e755f452b4b73a68c/aiotieba-4.4.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b32c849a007772b04a8ce60522799ffa37dedc6357d8afcfb5ff4749710f6e03",
                "md5": "a54ceef9e31f02e420a3fb4ba7b637ac",
                "sha256": "c29682d721be65ff4eff6e0b05401c1d72bbd3fa0c03393784867363ba8af4ac"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a54ceef9e31f02e420a3fb4ba7b637ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.13,>=3.8",
            "size": 260698,
            "upload_time": "2024-04-20T10:22:24",
            "upload_time_iso_8601": "2024-04-20T10:22:24.280486Z",
            "url": "https://files.pythonhosted.org/packages/b3/2c/849a007772b04a8ce60522799ffa37dedc6357d8afcfb5ff4749710f6e03/aiotieba-4.4.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fcd93d78731c04a1845fb61021965ffd9ab49aa990acf33199af20f452ef4a8",
                "md5": "66120d32830b7c62f6565ed570f0170f",
                "sha256": "9ec3ca2d97a521fbad0d1224e3a363919d986659b3dec5882dbe34b4ed1ddd70"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66120d32830b7c62f6565ed570f0170f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 274215,
            "upload_time": "2024-04-20T10:22:26",
            "upload_time_iso_8601": "2024-04-20T10:22:26.134161Z",
            "url": "https://files.pythonhosted.org/packages/2f/cd/93d78731c04a1845fb61021965ffd9ab49aa990acf33199af20f452ef4a8/aiotieba-4.4.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1efeadd342aac54c5c95477331706cd7f08f73d5838fef679044b1fd1450aa7c",
                "md5": "af3ac35d9e6af9e77d9bb66e74cc61b0",
                "sha256": "a1e1c8172c6a58296b368be86e18d25b99154aab65f9d3b3a61b0a17c07925e0"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af3ac35d9e6af9e77d9bb66e74cc61b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 276816,
            "upload_time": "2024-04-20T10:22:27",
            "upload_time_iso_8601": "2024-04-20T10:22:27.946814Z",
            "url": "https://files.pythonhosted.org/packages/1e/fe/add342aac54c5c95477331706cd7f08f73d5838fef679044b1fd1450aa7c/aiotieba-4.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5443abd275cd68d2e2bf9571516584fa89f27d47e88db3ecea863208f4752498",
                "md5": "e43d54e1e81aaf007d4f558979a02acf",
                "sha256": "7d882a47f47c1ece09656345c96ce4391edc9508c03010da700758ca9ee74dd4"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e43d54e1e81aaf007d4f558979a02acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 276892,
            "upload_time": "2024-04-20T10:22:29",
            "upload_time_iso_8601": "2024-04-20T10:22:29.277416Z",
            "url": "https://files.pythonhosted.org/packages/54/43/abd275cd68d2e2bf9571516584fa89f27d47e88db3ecea863208f4752498/aiotieba-4.4.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29a1e0e83f63da8a8eeefb86d1d768342efa4a14b89c7f643245249c2bc11e61",
                "md5": "ad80d9cee7d9ff89a4324aadae425495",
                "sha256": "ba2212b812721e3669d5aefdc30e966f065acf57b8f024adb08262a96432af63"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ad80d9cee7d9ff89a4324aadae425495",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.13,>=3.8",
            "size": 260680,
            "upload_time": "2024-04-20T10:22:31",
            "upload_time_iso_8601": "2024-04-20T10:22:31.084623Z",
            "url": "https://files.pythonhosted.org/packages/29/a1/e0e83f63da8a8eeefb86d1d768342efa4a14b89c7f643245249c2bc11e61/aiotieba-4.4.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66697dd79f71767ca87b6d8373c69432906d3876848dc63d39b84f2528640650",
                "md5": "e41667a0bdfdf359ad0d6cb26b941dd7",
                "sha256": "fd671a57f8c50216a2c2f649efa3c99c88799504ebed8fe1b91c8c5337518d69"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e41667a0bdfdf359ad0d6cb26b941dd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 274202,
            "upload_time": "2024-04-20T10:22:32",
            "upload_time_iso_8601": "2024-04-20T10:22:32.850171Z",
            "url": "https://files.pythonhosted.org/packages/66/69/7dd79f71767ca87b6d8373c69432906d3876848dc63d39b84f2528640650/aiotieba-4.4.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b3e4fe2d1b925afcfe844fcfc91eb7d298d664e2f6b0b9c0f495546e34c8c62",
                "md5": "0ef9822249e60ea2b338d31b7de032b7",
                "sha256": "65ff572390d61b1609a7d28d60636f155d7dd43f26801ccc094310dbcacbc090"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ef9822249e60ea2b338d31b7de032b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 276798,
            "upload_time": "2024-04-20T10:22:34",
            "upload_time_iso_8601": "2024-04-20T10:22:34.629691Z",
            "url": "https://files.pythonhosted.org/packages/2b/3e/4fe2d1b925afcfe844fcfc91eb7d298d664e2f6b0b9c0f495546e34c8c62/aiotieba-4.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87d7253d431298a6b5ab556a4a298db8557e75de61b6550000c3bde7e88ec0f0",
                "md5": "c8b4b3cb08e46ea9ffbd66d02799c35b",
                "sha256": "7a86f2dfc6b84304ed35896dda16ad7c84bf35a448db3755ba07a5345e700931"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8b4b3cb08e46ea9ffbd66d02799c35b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 276874,
            "upload_time": "2024-04-20T10:22:36",
            "upload_time_iso_8601": "2024-04-20T10:22:36.406425Z",
            "url": "https://files.pythonhosted.org/packages/87/d7/253d431298a6b5ab556a4a298db8557e75de61b6550000c3bde7e88ec0f0/aiotieba-4.4.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34e210897ffee97f39979fa03ad1aef46a7766e89d0ee887abdd42df7d814aa8",
                "md5": "91f5d4f50d4c6b9331186d51e8f5b249",
                "sha256": "445630218bc52dc3e59d68f8ee2a655db910e65ea3535818dfc69ea238a0bf43"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91f5d4f50d4c6b9331186d51e8f5b249",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.13,>=3.8",
            "size": 260696,
            "upload_time": "2024-04-20T10:22:38",
            "upload_time_iso_8601": "2024-04-20T10:22:38.251468Z",
            "url": "https://files.pythonhosted.org/packages/34/e2/10897ffee97f39979fa03ad1aef46a7766e89d0ee887abdd42df7d814aa8/aiotieba-4.4.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08e230767868ae7e416737b4eeea829771c098c85e270ffb21f704cc030d4876",
                "md5": "b284cdeb52477562b56660a686332dd7",
                "sha256": "981bedf764c20333ad4e5189c66f318b363c4b5b634426612b7e3124cbcc1ada"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b284cdeb52477562b56660a686332dd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 274200,
            "upload_time": "2024-04-20T10:22:40",
            "upload_time_iso_8601": "2024-04-20T10:22:40.127375Z",
            "url": "https://files.pythonhosted.org/packages/08/e2/30767868ae7e416737b4eeea829771c098c85e270ffb21f704cc030d4876/aiotieba-4.4.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cde407242dd6b63cb1d72bf2656be474ec98ec480be34bad0d005888ca216b5c",
                "md5": "59a578222299f75caf34a9bd84e8230b",
                "sha256": "5cd8e1955f0bcd2266b889e4e836253872e03e8eedc46d83fd0130ce819400c9"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59a578222299f75caf34a9bd84e8230b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 276799,
            "upload_time": "2024-04-20T10:22:41",
            "upload_time_iso_8601": "2024-04-20T10:22:41.836064Z",
            "url": "https://files.pythonhosted.org/packages/cd/e4/07242dd6b63cb1d72bf2656be474ec98ec480be34bad0d005888ca216b5c/aiotieba-4.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd3af2fb29db15f8baa1ee796e76362938281d072a751e2f14547245922ef3ca",
                "md5": "0cf41781c3eaf386b40abfc1172e6b72",
                "sha256": "da2fcb4e6075826844b26d8e416c7b1c232aaa4c614256d82bb062e8ee3069e4"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cf41781c3eaf386b40abfc1172e6b72",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 276875,
            "upload_time": "2024-04-20T10:22:43",
            "upload_time_iso_8601": "2024-04-20T10:22:43.226575Z",
            "url": "https://files.pythonhosted.org/packages/bd/3a/f2fb29db15f8baa1ee796e76362938281d072a751e2f14547245922ef3ca/aiotieba-4.4.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afe9ebc0fab48faba4d9ec4c863c08b94ad4a86350fcb751103ba4c831d17b66",
                "md5": "a818514fa63e63064015a5f33315124c",
                "sha256": "8454288ae9d73ddf02936d26d1c888fc9ed786bfb8b3d32925f06af1f346d9ca"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a818514fa63e63064015a5f33315124c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.13,>=3.8",
            "size": 260700,
            "upload_time": "2024-04-20T10:22:44",
            "upload_time_iso_8601": "2024-04-20T10:22:44.606755Z",
            "url": "https://files.pythonhosted.org/packages/af/e9/ebc0fab48faba4d9ec4c863c08b94ad4a86350fcb751103ba4c831d17b66/aiotieba-4.4.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1aa1f380bdb9a72b278394390b14c2f3ecfdb2319b67289adf96057e5b730e1a",
                "md5": "e569ca0d64f2d3e745e7b6e5b9f2c8c0",
                "sha256": "e6740b52312ad319c6830b7a86f2d4bbebee45e7f0e5419750413d3d94121352"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e569ca0d64f2d3e745e7b6e5b9f2c8c0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 274275,
            "upload_time": "2024-04-20T10:22:46",
            "upload_time_iso_8601": "2024-04-20T10:22:46.149818Z",
            "url": "https://files.pythonhosted.org/packages/1a/a1/f380bdb9a72b278394390b14c2f3ecfdb2319b67289adf96057e5b730e1a/aiotieba-4.4.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a82641ef6b4a928cf74994fcb33bce343e8d62f824324551943d39c1b5a48fc",
                "md5": "8f5fbee288747c8770b22502c2889fa0",
                "sha256": "774ebc227ce727303b69754ee0b438200c0c61e9b6c03d996ef2cceef9cc5a21"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f5fbee288747c8770b22502c2889fa0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 276882,
            "upload_time": "2024-04-20T10:22:47",
            "upload_time_iso_8601": "2024-04-20T10:22:47.498299Z",
            "url": "https://files.pythonhosted.org/packages/6a/82/641ef6b4a928cf74994fcb33bce343e8d62f824324551943d39c1b5a48fc/aiotieba-4.4.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fb963c5882b673c1c16795ff6cc3f5967fe3baccb42bbbea483c816ac6e9d5c",
                "md5": "c4e5562d4b2b2b37da01f012faf559f3",
                "sha256": "c9a52430d32578d735be6427b48dbe0e26e053b10204e87216df20b276a45879"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c4e5562d4b2b2b37da01f012faf559f3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": "<3.13,>=3.8",
            "size": 260684,
            "upload_time": "2024-04-20T10:22:49",
            "upload_time_iso_8601": "2024-04-20T10:22:49.364573Z",
            "url": "https://files.pythonhosted.org/packages/2f/b9/63c5882b673c1c16795ff6cc3f5967fe3baccb42bbbea483c816ac6e9d5c/aiotieba-4.4.4-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50ca113aba19aed425b0f762a4e57f054159d01d5b559c0ecb11ef32c541f87b",
                "md5": "eff5bcde3dd2b92e679968b974b270d6",
                "sha256": "6ddac0a7d989a99de4455c8d11ffb717bec5eae48e46a4481a39d0e3c230a179"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eff5bcde3dd2b92e679968b974b270d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 274273,
            "upload_time": "2024-04-20T10:22:50",
            "upload_time_iso_8601": "2024-04-20T10:22:50.561877Z",
            "url": "https://files.pythonhosted.org/packages/50/ca/113aba19aed425b0f762a4e57f054159d01d5b559c0ecb11ef32c541f87b/aiotieba-4.4.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "428600c27b8486159385120d05d06bdf3a12b9b2b496c9fe213a1ade7b2b4fa0",
                "md5": "e35cb42169be457c502b32dd430919f4",
                "sha256": "c639665a85836250e861b325030f8f4265d851507ec63095a7e67a1d11f80ed4"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e35cb42169be457c502b32dd430919f4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 276882,
            "upload_time": "2024-04-20T10:22:51",
            "upload_time_iso_8601": "2024-04-20T10:22:51.787244Z",
            "url": "https://files.pythonhosted.org/packages/42/86/00c27b8486159385120d05d06bdf3a12b9b2b496c9fe213a1ade7b2b4fa0/aiotieba-4.4.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f069c7e1b55e697a9a0f0c6c26647a740a7898fef71b5b77e4cd51996d00190e",
                "md5": "dd0849f556c7f859471e27dd6fcba0a0",
                "sha256": "9ef41c2e814da08e618b0fa2f24bf42a6c29fddc10d0c199666f5a27aae8ab63"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dd0849f556c7f859471e27dd6fcba0a0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": "<3.13,>=3.8",
            "size": 260672,
            "upload_time": "2024-04-20T10:22:53",
            "upload_time_iso_8601": "2024-04-20T10:22:53.402805Z",
            "url": "https://files.pythonhosted.org/packages/f0/69/c7e1b55e697a9a0f0c6c26647a740a7898fef71b5b77e4cd51996d00190e/aiotieba-4.4.4-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2362cef85115e0ae3e29f7f762c8df2e36499af032f7ae1fe3ca2480288f1183",
                "md5": "323803d334d167645c46736a1fa823c6",
                "sha256": "384dc945ac890817af1bf38d8719bc153e9478a3c803d26048d416927e3ccfc9"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "323803d334d167645c46736a1fa823c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 274271,
            "upload_time": "2024-04-20T10:22:54",
            "upload_time_iso_8601": "2024-04-20T10:22:54.641116Z",
            "url": "https://files.pythonhosted.org/packages/23/62/cef85115e0ae3e29f7f762c8df2e36499af032f7ae1fe3ca2480288f1183/aiotieba-4.4.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31d9f47671c5c428d2df2c4c454af1864e7ff149a0555336f33e6b999d55f014",
                "md5": "e2ed4f81acffc48a640be3e7a475c513",
                "sha256": "d0899ff2b464b6b3aa0825683091990f914edc7554fde52afd6d049d7d291a58"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2ed4f81acffc48a640be3e7a475c513",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 276881,
            "upload_time": "2024-04-20T10:22:55",
            "upload_time_iso_8601": "2024-04-20T10:22:55.858963Z",
            "url": "https://files.pythonhosted.org/packages/31/d9/f47671c5c428d2df2c4c454af1864e7ff149a0555336f33e6b999d55f014/aiotieba-4.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7316a48d4e1a637a4ab25ab1b8e78790482e8d2f465a6318a46ae5f8f8f9139",
                "md5": "eff10309b40af91d0fe5eb29257def46",
                "sha256": "9b7971ec18071eaa9160ef7c43228f8649268a544c254347c6ebbed397a33e8e"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eff10309b40af91d0fe5eb29257def46",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": "<3.13,>=3.8",
            "size": 260678,
            "upload_time": "2024-04-20T10:22:57",
            "upload_time_iso_8601": "2024-04-20T10:22:57.666646Z",
            "url": "https://files.pythonhosted.org/packages/a7/31/6a48d4e1a637a4ab25ab1b8e78790482e8d2f465a6318a46ae5f8f8f9139/aiotieba-4.4.4-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1429b01799e45f22e55f7d6fec700363ee724973bdb5582b71b6a76d9a2fddda",
                "md5": "65ff0c76dddf4ae1c18e4d3546011ee4",
                "sha256": "77571ea224493cfee4871fe54bf9cf664ca017a235fa449a5da236feb9c0ef0a"
            },
            "downloads": -1,
            "filename": "aiotieba-4.4.4.tar.gz",
            "has_sig": false,
            "md5_digest": "65ff0c76dddf4ae1c18e4d3546011ee4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.8",
            "size": 189847,
            "upload_time": "2024-04-20T10:22:59",
            "upload_time_iso_8601": "2024-04-20T10:22:59.018674Z",
            "url": "https://files.pythonhosted.org/packages/14/29/b01799e45f22e55f7d6fec700363ee724973bdb5582b71b6a76d9a2fddda/aiotieba-4.4.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-20 10:22:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Starry-OvO",
    "github_project": "aiotieba",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "aiotieba"
}
        
Elapsed time: 0.23473s