Name | aiotieba JSON |
Version |
4.6.0
JSON |
| download |
home_page | None |
Summary | Asynchronous I/O Client for Baidu Tieba |
upload_time | 2025-07-11 04:07:59 |
maintainer | None |
docs_url | None |
author | None |
requires_python | <3.14,>=3.9 |
license | None |
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/lumina37/aiotieba/actions">
<img src="https://img.shields.io/github/actions/workflow/status/lumina37/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/lumina37/aiotieba/tree/develop/aiotieba/api)
+ 类型注解全覆盖,方法注释全覆盖,内部命名统一
+ 支持protobuf序列化请求参数
+ 支持websocket接口
+ 与官方版本高度一致的密码学实现
## 友情链接
+ [TiebaManager(吧务管理器 有用户界面)](https://github.com/dog194/TiebaManager)
+ [基于aiotieba的tieba bot](https://github.com/adk23333/BungleCat)
+ [基于aiotieba的贴吧管理器](https://github.com/adk23333/tieba-admin)
+ [C#版本的贴吧接口库](https://github.com/BaWuZhuShou/AioTieba4DotNet)
+ [贴吧第三方网页前端](https://0xacab.org/johnxina/rat)
+ [贴吧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.14,>=3.9",
"maintainer_email": null,
"keywords": "baidu, tieba",
"author": null,
"author_email": "lumina37 <starry.qvq@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/30/31/33eb017effdab5b7fb4d12663b413b4bfb64ecff7f6e4fcc64f5c3be9c64/aiotieba-4.6.0.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/lumina37/aiotieba/actions\">\n <img src=\"https://img.shields.io/github/actions/workflow/status/lumina37/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\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\u3002\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/lumina37/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\u7684tieba bot](https://github.com/adk23333/BungleCat)\n+ [\u57fa\u4e8eaiotieba\u7684\u8d34\u5427\u7ba1\u7406\u5668](https://github.com/adk23333/tieba-admin)\n+ [C#\u7248\u672c\u7684\u8d34\u5427\u63a5\u53e3\u5e93](https://github.com/BaWuZhuShou/AioTieba4DotNet)\n+ [\u8d34\u5427\u7b2c\u4e09\u65b9\u7f51\u9875\u524d\u7aef](https://0xacab.org/johnxina/rat)\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.6.0",
"project_urls": {
"Documentation": "https://aiotieba.cc/",
"Repository": "https://github.com/lumina37/aiotieba/"
},
"split_keywords": [
"baidu",
" tieba"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a0b4200a7296309aea41f31c65046da6400d3985bd14d399101913e1c96ad910",
"md5": "3200d81a6530121b2f9f280ab166714c",
"sha256": "bbefb0ed1855417c0e3cb311dc2f6432113e15f784f1897b597af2710d130e6c"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3200d81a6530121b2f9f280ab166714c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.9",
"size": 302829,
"upload_time": "2025-07-11T04:07:02",
"upload_time_iso_8601": "2025-07-11T04:07:02.025165Z",
"url": "https://files.pythonhosted.org/packages/a0/b4/200a7296309aea41f31c65046da6400d3985bd14d399101913e1c96ad910/aiotieba-4.6.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "17ee56ce152206982f4a22a6951ad16078dc6a15c0c88c104fc26902a38033de",
"md5": "fb37363c102993767662868c989e60a3",
"sha256": "6411f2c3c82ee406f635343cd10192c07eaaa0d5e5ab1f0450b61516034bd807"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fb37363c102993767662868c989e60a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.9",
"size": 302812,
"upload_time": "2025-07-11T04:07:03",
"upload_time_iso_8601": "2025-07-11T04:07:03.836390Z",
"url": "https://files.pythonhosted.org/packages/17/ee/56ce152206982f4a22a6951ad16078dc6a15c0c88c104fc26902a38033de/aiotieba-4.6.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "959f708f7df50bc2506aac0f000e4c4a63a222b7e7c5eba6ecfc691a4a09a5fb",
"md5": "ffece9ab881d45ca25c899cd42ab9653",
"sha256": "bfbe54119b2eb0c1798b7a5a1fcc3832bb726da49789cad5f5eb69fe7870224b"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ffece9ab881d45ca25c899cd42ab9653",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.9",
"size": 304253,
"upload_time": "2025-07-11T04:07:05",
"upload_time_iso_8601": "2025-07-11T04:07:05.032574Z",
"url": "https://files.pythonhosted.org/packages/95/9f/708f7df50bc2506aac0f000e4c4a63a222b7e7c5eba6ecfc691a4a09a5fb/aiotieba-4.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc41f4c3da74ab986660d42cd2d922cc51c84e06759b861068aeb07e52e956a9",
"md5": "6d4bf9aaa1b3baf7714d1ff47d02009c",
"sha256": "7c6fa9c07e6d72beac35602857c792d0b501049f45d708e20b1a88ca2853b1f9"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6d4bf9aaa1b3baf7714d1ff47d02009c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.9",
"size": 304403,
"upload_time": "2025-07-11T04:07:06",
"upload_time_iso_8601": "2025-07-11T04:07:06.534690Z",
"url": "https://files.pythonhosted.org/packages/bc/41/f4c3da74ab986660d42cd2d922cc51c84e06759b861068aeb07e52e956a9/aiotieba-4.6.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2207d233ef89989691e5cd076c49f8814ffbd4b51b1f1460c4f8389968e6e129",
"md5": "13b4a0726b842502a23831de53817b7b",
"sha256": "0ad45e726da876aced43aa8089481b30d214d126da6be9a53a9a26b1eee553fb"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "13b4a0726b842502a23831de53817b7b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.9",
"size": 287217,
"upload_time": "2025-07-11T04:07:08",
"upload_time_iso_8601": "2025-07-11T04:07:08.190940Z",
"url": "https://files.pythonhosted.org/packages/22/07/d233ef89989691e5cd076c49f8814ffbd4b51b1f1460c4f8389968e6e129/aiotieba-4.6.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d597e308c9713a49fca831d33987c3b33607ef51678f80a92e6c18902f02ca6c",
"md5": "a34a6a2aacfd9ab8c23d8ea89d303f99",
"sha256": "bfc09b9c4954ce4808fcebeedec8cc1f12a2ee10e929f4bf30e17e42c12bd1e5"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a34a6a2aacfd9ab8c23d8ea89d303f99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.9",
"size": 302828,
"upload_time": "2025-07-11T04:07:09",
"upload_time_iso_8601": "2025-07-11T04:07:09.626139Z",
"url": "https://files.pythonhosted.org/packages/d5/97/e308c9713a49fca831d33987c3b33607ef51678f80a92e6c18902f02ca6c/aiotieba-4.6.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7271b8d3cd43a1f5697ce05752ab75ea3b2660980a8d14c0aff8632c4ad49a6",
"md5": "b1dcafe14cdc1ffefd99ab70e53267fb",
"sha256": "8fb55b22b90b1f847e0d6b7cbd768a573f85022dcb548d972eb794c4ccb0b7b0"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b1dcafe14cdc1ffefd99ab70e53267fb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.9",
"size": 302811,
"upload_time": "2025-07-11T04:07:11",
"upload_time_iso_8601": "2025-07-11T04:07:11.141122Z",
"url": "https://files.pythonhosted.org/packages/b7/27/1b8d3cd43a1f5697ce05752ab75ea3b2660980a8d14c0aff8632c4ad49a6/aiotieba-4.6.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0f18ee11b17bc66a3d884c7c49f7e41bd54673776c653680f68091447df2bbb",
"md5": "ce296e166d71a0bba8d20a06aeeb9305",
"sha256": "e9cfdc71bb46361b4cf2cd37ff4a65f81a4d57ceac47109ec8e0583065f74f50"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ce296e166d71a0bba8d20a06aeeb9305",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.9",
"size": 304257,
"upload_time": "2025-07-11T04:07:12",
"upload_time_iso_8601": "2025-07-11T04:07:12.393439Z",
"url": "https://files.pythonhosted.org/packages/c0/f1/8ee11b17bc66a3d884c7c49f7e41bd54673776c653680f68091447df2bbb/aiotieba-4.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5cfcf23d539cd66f23c0727288429fd78ca96b1fb0f3e655e8805f56dab55edd",
"md5": "9ca8909ba549888ee31ddc23e0a850c3",
"sha256": "e1843a04d17716e9bbfd20b102e5530cea397ceab001984cc07d69a8cf9c3643"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9ca8909ba549888ee31ddc23e0a850c3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.9",
"size": 304403,
"upload_time": "2025-07-11T04:07:13",
"upload_time_iso_8601": "2025-07-11T04:07:13.830830Z",
"url": "https://files.pythonhosted.org/packages/5c/fc/f23d539cd66f23c0727288429fd78ca96b1fb0f3e655e8805f56dab55edd/aiotieba-4.6.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73219ff4c3c72729fefd609ff69144342ce8faf512968990d14e6aaf573db0c1",
"md5": "ec55ae3614642aedce420f6e08dba940",
"sha256": "7579c186c64e5c8028f88541020eb8d9ccf3eb6bbeeeceec4094ba434a16b4cc"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "ec55ae3614642aedce420f6e08dba940",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.9",
"size": 287246,
"upload_time": "2025-07-11T04:07:14",
"upload_time_iso_8601": "2025-07-11T04:07:14.937059Z",
"url": "https://files.pythonhosted.org/packages/73/21/9ff4c3c72729fefd609ff69144342ce8faf512968990d14e6aaf573db0c1/aiotieba-4.6.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f6f4ad42ab983a2c0d99321878afe452a83dd5834d3e9df80b4c9d13aa96357",
"md5": "4132efc3fe31e324a080dc6bca903676",
"sha256": "ba3708dc8ab71796082b4c69e00f13600b2e08d314f49b1c6100eb309c8ed055"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "4132efc3fe31e324a080dc6bca903676",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.9",
"size": 302710,
"upload_time": "2025-07-11T04:07:16",
"upload_time_iso_8601": "2025-07-11T04:07:16.468488Z",
"url": "https://files.pythonhosted.org/packages/7f/6f/4ad42ab983a2c0d99321878afe452a83dd5834d3e9df80b4c9d13aa96357/aiotieba-4.6.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "671c9f35d9aa73b3ee96f26cb9b56053ac98cf72dd58b9e8a4a77a698db86fb9",
"md5": "3e13506624e4150f92563dbf82b4c6a4",
"sha256": "eed7ff40831c60b256d9b83e635d4f1dd798a462a02bce4d362ce99634c45a4d"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3e13506624e4150f92563dbf82b4c6a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.9",
"size": 302811,
"upload_time": "2025-07-11T04:07:18",
"upload_time_iso_8601": "2025-07-11T04:07:18.031515Z",
"url": "https://files.pythonhosted.org/packages/67/1c/9f35d9aa73b3ee96f26cb9b56053ac98cf72dd58b9e8a4a77a698db86fb9/aiotieba-4.6.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b12d62823a0abc9f66e48f3f7dca4429eb9039d4b4532cab8fe2267e9f76ef71",
"md5": "c4e28c57016c73ca062b0b9915745e49",
"sha256": "faff9820666733dca0fabbde5e38b5328109133855e9762c4a14700901d05d8c"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c4e28c57016c73ca062b0b9915745e49",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.9",
"size": 304258,
"upload_time": "2025-07-11T04:07:19",
"upload_time_iso_8601": "2025-07-11T04:07:19.417888Z",
"url": "https://files.pythonhosted.org/packages/b1/2d/62823a0abc9f66e48f3f7dca4429eb9039d4b4532cab8fe2267e9f76ef71/aiotieba-4.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c4f4650731a1d2f0afdcf0dd9695057a7b0accdf378baa96640c7c9d312c5ec",
"md5": "abb93d4bd9136685bf44fb2a6b8f5868",
"sha256": "34219d4a56eb18d9407c584d0ddbd17f431ee9cb4fec78c1d6dafe9feab30197"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "abb93d4bd9136685bf44fb2a6b8f5868",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.9",
"size": 304407,
"upload_time": "2025-07-11T04:07:20",
"upload_time_iso_8601": "2025-07-11T04:07:20.845837Z",
"url": "https://files.pythonhosted.org/packages/1c/4f/4650731a1d2f0afdcf0dd9695057a7b0accdf378baa96640c7c9d312c5ec/aiotieba-4.6.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c17bd379a8ccaa516e26e71ba0dc278152b33be4d328e877870fbd2de105d7b5",
"md5": "be4b3e19dd5e84373449d7ee41f6ac35",
"sha256": "a1a8ec586b4cecec13536dedd377d7ed0691855089872539d4f8898803c8b4e9"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "be4b3e19dd5e84373449d7ee41f6ac35",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.9",
"size": 287252,
"upload_time": "2025-07-11T04:07:22",
"upload_time_iso_8601": "2025-07-11T04:07:22.115927Z",
"url": "https://files.pythonhosted.org/packages/c1/7b/d379a8ccaa516e26e71ba0dc278152b33be4d328e877870fbd2de105d7b5/aiotieba-4.6.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfd40759536a13396473528072b9deb39507076c9cb6fabd1d86dce63cfcf0f3",
"md5": "edef8b7a9e8b149b743a6b3e8aef09ab",
"sha256": "0b760108015d565ca43c60a6d4c839421c09a0d4fa6fa51b44efd6835e7b432f"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "edef8b7a9e8b149b743a6b3e8aef09ab",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 302712,
"upload_time": "2025-07-11T04:07:23",
"upload_time_iso_8601": "2025-07-11T04:07:23.533128Z",
"url": "https://files.pythonhosted.org/packages/df/d4/0759536a13396473528072b9deb39507076c9cb6fabd1d86dce63cfcf0f3/aiotieba-4.6.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec6f77e156b39581428007250740bb4d044f8eef211453713872d67b05173995",
"md5": "3cea71e151e5f98506bbc25d5574f032",
"sha256": "b655837042aedd061476ab297472b1fec794ac019e9104f96f698a27bf74a990"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3cea71e151e5f98506bbc25d5574f032",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 302813,
"upload_time": "2025-07-11T04:07:25",
"upload_time_iso_8601": "2025-07-11T04:07:25.103315Z",
"url": "https://files.pythonhosted.org/packages/ec/6f/77e156b39581428007250740bb4d044f8eef211453713872d67b05173995/aiotieba-4.6.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "623c0d48a6a7f7cf4158e50c6f922cb978812c48248962a244a9881071aac904",
"md5": "d8ab961af4af3c7bd3c11806e63eaf7a",
"sha256": "719923d1d3124f884e1de20296dec4d6a0c12abdc9ce4bf53580b4eca20d9333"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d8ab961af4af3c7bd3c11806e63eaf7a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 304257,
"upload_time": "2025-07-11T04:07:26",
"upload_time_iso_8601": "2025-07-11T04:07:26.260511Z",
"url": "https://files.pythonhosted.org/packages/62/3c/0d48a6a7f7cf4158e50c6f922cb978812c48248962a244a9881071aac904/aiotieba-4.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "16b4a54b20870cbfa56240ffc5de919563edc82e008454ad3f6b45f45fe98b0b",
"md5": "d8c921d80caf143a575cc8e242952a6d",
"sha256": "ad6cf1824cba752abb809c001a3950a46f4c3ac7db5c29fbec8f15bf04f3a36b"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d8c921d80caf143a575cc8e242952a6d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 304400,
"upload_time": "2025-07-11T04:07:27",
"upload_time_iso_8601": "2025-07-11T04:07:27.879535Z",
"url": "https://files.pythonhosted.org/packages/16/b4/a54b20870cbfa56240ffc5de919563edc82e008454ad3f6b45f45fe98b0b/aiotieba-4.6.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f66996d431cc1ebf0082ef8c17a0987d96403b4a989fdf24dc06efeef5c06a4",
"md5": "16054066dbb31c0059c85b6bf495b4d6",
"sha256": "268f84116b7a2d51c856ca087c5856505c203bc345ddde10793b1c1ff2fb0c31"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "16054066dbb31c0059c85b6bf495b4d6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 302745,
"upload_time": "2025-07-11T04:07:30",
"upload_time_iso_8601": "2025-07-11T04:07:30.515452Z",
"url": "https://files.pythonhosted.org/packages/0f/66/996d431cc1ebf0082ef8c17a0987d96403b4a989fdf24dc06efeef5c06a4/aiotieba-4.6.0-cp313-cp313t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfc469e2435bb5ba282ddd5da47a8cd0b4c205f658819f244bc11ab2c47080ba",
"md5": "dcc77cb70d2b1a7120815ecf44b32b27",
"sha256": "2ef38c711033ecc413e3e9b043276b74e38debeddf67d6ffecb06b4fca651041"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dcc77cb70d2b1a7120815ecf44b32b27",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 302870,
"upload_time": "2025-07-11T04:07:31",
"upload_time_iso_8601": "2025-07-11T04:07:31.608110Z",
"url": "https://files.pythonhosted.org/packages/cf/c4/69e2435bb5ba282ddd5da47a8cd0b4c205f658819f244bc11ab2c47080ba/aiotieba-4.6.0-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "450768acf655e1d64813d3de53d84a923cdc98a109b39e6f3fd9c815140496ce",
"md5": "e21d2ebec2a199e44344b5b7aa31a784",
"sha256": "fbbcd1f9bdf0ae0a438ab5f928ca9a6327ab116d887f0954c692b84e1025f446"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "e21d2ebec2a199e44344b5b7aa31a784",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 304312,
"upload_time": "2025-07-11T04:07:33",
"upload_time_iso_8601": "2025-07-11T04:07:33.144734Z",
"url": "https://files.pythonhosted.org/packages/45/07/68acf655e1d64813d3de53d84a923cdc98a109b39e6f3fd9c815140496ce/aiotieba-4.6.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "917267514d88deb20d4ac2eea246d048c1e5f836a7556d671816ca437e9b2374",
"md5": "9180c0b9ed333b863c50a61b3f33c305",
"sha256": "4aa046700d706ddcded7fb3d20e5b0e2bee7bad2d987dfe893362bddec86b280"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9180c0b9ed333b863c50a61b3f33c305",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 304449,
"upload_time": "2025-07-11T04:07:34",
"upload_time_iso_8601": "2025-07-11T04:07:34.282663Z",
"url": "https://files.pythonhosted.org/packages/91/72/67514d88deb20d4ac2eea246d048c1e5f836a7556d671816ca437e9b2374/aiotieba-4.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b06a8db1ea9752d35660135c49e7065dc93543ea9f2b16a8dc3aa898f982265",
"md5": "e35b453f6962c54884e5338d8be8f96c",
"sha256": "59528e56b7b1907e1e13e2e5983c4c6b030dfdffdf35bd17f4a6c4130247ee69"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "e35b453f6962c54884e5338d8be8f96c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 287285,
"upload_time": "2025-07-11T04:07:36",
"upload_time_iso_8601": "2025-07-11T04:07:36.147382Z",
"url": "https://files.pythonhosted.org/packages/8b/06/a8db1ea9752d35660135c49e7065dc93543ea9f2b16a8dc3aa898f982265/aiotieba-4.6.0-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5dc891fb58564651e00a3ace11f7dc2199d392e637ff5a4a31655eacfc3600a",
"md5": "1b169af8197b018d8a4b56c1c1fe3436",
"sha256": "14748c50721da156d5641049b609c4d2817c5d51f144d5dcc4f36ee2efb16a1c"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "1b169af8197b018d8a4b56c1c1fe3436",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.9",
"size": 287251,
"upload_time": "2025-07-11T04:07:29",
"upload_time_iso_8601": "2025-07-11T04:07:29.403893Z",
"url": "https://files.pythonhosted.org/packages/a5/dc/891fb58564651e00a3ace11f7dc2199d392e637ff5a4a31655eacfc3600a/aiotieba-4.6.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c26df2a4da80d4bb3ea7c83a696f05af54240cdc637f6b116a1c13e86580665f",
"md5": "9e405c0bfe9cd8e311cf8429fd5a3a29",
"sha256": "9712157c2aec415dd40cc4020e4d83e52b535f2d0aadb353877e3c37c15b7467"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9e405c0bfe9cd8e311cf8429fd5a3a29",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.9",
"size": 302827,
"upload_time": "2025-07-11T04:07:37",
"upload_time_iso_8601": "2025-07-11T04:07:37.288230Z",
"url": "https://files.pythonhosted.org/packages/c2/6d/f2a4da80d4bb3ea7c83a696f05af54240cdc637f6b116a1c13e86580665f/aiotieba-4.6.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c0f1698af5c289e75fbba956705ccabec5de3f72cf4e23d5a15e16a13c5e53a",
"md5": "aaba749d0094727ac5d7966ed51aaae9",
"sha256": "3d3be1846a429bea6048c27cf40f8f9b0650ba551ba845c88b9901f4b879c81f"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "aaba749d0094727ac5d7966ed51aaae9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.9",
"size": 302810,
"upload_time": "2025-07-11T04:07:38",
"upload_time_iso_8601": "2025-07-11T04:07:38.828321Z",
"url": "https://files.pythonhosted.org/packages/2c/0f/1698af5c289e75fbba956705ccabec5de3f72cf4e23d5a15e16a13c5e53a/aiotieba-4.6.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6861a6a1c775372b22c879b68e28cf0fe57c00ec4622e9a7cd890a45f8be5fc5",
"md5": "2310967bdf873b2f384aadf04487edc5",
"sha256": "92cb6bbb58d56a672a83a44603e8512a6fce93f3a925d42a5f0eae357cfeb953"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "2310967bdf873b2f384aadf04487edc5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.9",
"size": 304253,
"upload_time": "2025-07-11T04:07:40",
"upload_time_iso_8601": "2025-07-11T04:07:40.026512Z",
"url": "https://files.pythonhosted.org/packages/68/61/a6a1c775372b22c879b68e28cf0fe57c00ec4622e9a7cd890a45f8be5fc5/aiotieba-4.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b5a0d6ed82142d0ec0552d5084c1eab66fb2a0f820ac9131bfa717110eb8d9d",
"md5": "11162b80aafb1c330af286c9ca2e49eb",
"sha256": "5146c7a36ee579020f6ed451461814f5e76f1d8f6a597e7a6f212cf9481f0a7c"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "11162b80aafb1c330af286c9ca2e49eb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.9",
"size": 304400,
"upload_time": "2025-07-11T04:07:41",
"upload_time_iso_8601": "2025-07-11T04:07:41.109395Z",
"url": "https://files.pythonhosted.org/packages/6b/5a/0d6ed82142d0ec0552d5084c1eab66fb2a0f820ac9131bfa717110eb8d9d/aiotieba-4.6.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fc563215b4f9ae652df35f8d0f194277000092c08b467bda5bc4f6a7d0290be",
"md5": "22b1f49814195931b289b15fad61385e",
"sha256": "b922d57170fb6250776acbe76b753baee17d4a95eca76b4eba334864e089cbae"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "22b1f49814195931b289b15fad61385e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.9",
"size": 287219,
"upload_time": "2025-07-11T04:07:42",
"upload_time_iso_8601": "2025-07-11T04:07:42.232743Z",
"url": "https://files.pythonhosted.org/packages/7f/c5/63215b4f9ae652df35f8d0f194277000092c08b467bda5bc4f6a7d0290be/aiotieba-4.6.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ba388e2121e8281059f7b79f777abafd83e6c1f44b95469e416e627b9fe336d",
"md5": "8b9ced02999c220ef22204654da776a0",
"sha256": "4b97ffe35e965fc511061f1f54ba3ebb75b1717131cebda3209fd31ceb0f3bca"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "8b9ced02999c220ef22204654da776a0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.14,>=3.9",
"size": 302902,
"upload_time": "2025-07-11T04:07:43",
"upload_time_iso_8601": "2025-07-11T04:07:43.391947Z",
"url": "https://files.pythonhosted.org/packages/6b/a3/88e2121e8281059f7b79f777abafd83e6c1f44b95469e416e627b9fe336d/aiotieba-4.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "163de9fc77cb7e1299bb85bc39a9088a75c9fc39855a1f30a158916772173800",
"md5": "ef7270571947616683c4ea9edc92d064",
"sha256": "ce9d2304599a7cfd4fe04a4a6f7a416f4c44a0c5bb4ca738f92e180fb1385d66"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ef7270571947616683c4ea9edc92d064",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.14,>=3.9",
"size": 302886,
"upload_time": "2025-07-11T04:07:44",
"upload_time_iso_8601": "2025-07-11T04:07:44.940581Z",
"url": "https://files.pythonhosted.org/packages/16/3d/e9fc77cb7e1299bb85bc39a9088a75c9fc39855a1f30a158916772173800/aiotieba-4.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6d56f8e1f0688908350159577673628ba88f5e15638b38d7a50b8ba94940be3",
"md5": "81c76b2c78af20938c6152ff95d584d9",
"sha256": "728b678639704d739157b187228b66b1e489f2af048239e718df7136b3b4093d"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "81c76b2c78af20938c6152ff95d584d9",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.14,>=3.9",
"size": 304318,
"upload_time": "2025-07-11T04:07:46",
"upload_time_iso_8601": "2025-07-11T04:07:46.733095Z",
"url": "https://files.pythonhosted.org/packages/b6/d5/6f8e1f0688908350159577673628ba88f5e15638b38d7a50b8ba94940be3/aiotieba-4.6.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f201adb871618117f373caf7e4fc9e0f1b87b747b8339114e54a901b544311f",
"md5": "9b9e15a66d0206fee0cfada562e11f20",
"sha256": "9cce6fc69de93b357a3240e8c33dcd0ddbd6c77ee979273217b1467ac2174ed7"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "9b9e15a66d0206fee0cfada562e11f20",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.14,>=3.9",
"size": 287236,
"upload_time": "2025-07-11T04:07:47",
"upload_time_iso_8601": "2025-07-11T04:07:47.850218Z",
"url": "https://files.pythonhosted.org/packages/4f/20/1adb871618117f373caf7e4fc9e0f1b87b747b8339114e54a901b544311f/aiotieba-4.6.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c82176c5c2f8b161381ba360e3eb23e5f35d630bd8099399839a7c81e3b53a7",
"md5": "c2b6a3cb4d86fcb4e17c8b1baa0a501f",
"sha256": "f9041a7809fac767ca445f045b3463ed4574a7f745bdc468933c7d799d2b0456"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "c2b6a3cb4d86fcb4e17c8b1baa0a501f",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.14,>=3.9",
"size": 302903,
"upload_time": "2025-07-11T04:07:48",
"upload_time_iso_8601": "2025-07-11T04:07:48.932190Z",
"url": "https://files.pythonhosted.org/packages/7c/82/176c5c2f8b161381ba360e3eb23e5f35d630bd8099399839a7c81e3b53a7/aiotieba-4.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "089244308455ce52151ce88f7f0c91ed43c0b5f11fd5c7f51753184cda76828a",
"md5": "8bfc7349cc70f4fe20def22f294a5c05",
"sha256": "ba0173766cc57082a17f36b349d9910fb13e0013fc2794c5bb9d13da1c3bd467"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8bfc7349cc70f4fe20def22f294a5c05",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.14,>=3.9",
"size": 302883,
"upload_time": "2025-07-11T04:07:50",
"upload_time_iso_8601": "2025-07-11T04:07:50.035344Z",
"url": "https://files.pythonhosted.org/packages/08/92/44308455ce52151ce88f7f0c91ed43c0b5f11fd5c7f51753184cda76828a/aiotieba-4.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3977781a0ff7e4a9f3058568d16ab612cb45ce26a6b4234778098e241928b323",
"md5": "950ed20de4fe4c9ef5914eedf2ffde1d",
"sha256": "3d5063871c918fc74db9ea14d99cd3c70dbf0d1441e7cbdbadce01df65c5094f"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "950ed20de4fe4c9ef5914eedf2ffde1d",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.14,>=3.9",
"size": 304325,
"upload_time": "2025-07-11T04:07:52",
"upload_time_iso_8601": "2025-07-11T04:07:52.575414Z",
"url": "https://files.pythonhosted.org/packages/39/77/781a0ff7e4a9f3058568d16ab612cb45ce26a6b4234778098e241928b323/aiotieba-4.6.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f4e8cba8761b6ea5b3eb8da732e7bcbca931a68ce9aa06c08160aede69a070f",
"md5": "c6ed78ab14f046c4f3ecb789e5567275",
"sha256": "b3a9020ee973bfbf25da42ec9614422af38e76cd8953ca483db3561e91b07cf7"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp311-pypy311_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "c6ed78ab14f046c4f3ecb789e5567275",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.14,>=3.9",
"size": 287231,
"upload_time": "2025-07-11T04:07:53",
"upload_time_iso_8601": "2025-07-11T04:07:53.727626Z",
"url": "https://files.pythonhosted.org/packages/9f/4e/8cba8761b6ea5b3eb8da732e7bcbca931a68ce9aa06c08160aede69a070f/aiotieba-4.6.0-pp311-pypy311_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8208e5fcce36728a5ce303c500eaf6efffc29b736eb7cb2aab1b5bfd6e1d07c",
"md5": "fe9609d2f1970a4bc88268de4e99c346",
"sha256": "3d6e096ec4a1892ee39bfc92eecc4b87364417cfeada02e26fa3d989b3fb84d6"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "fe9609d2f1970a4bc88268de4e99c346",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.14,>=3.9",
"size": 302901,
"upload_time": "2025-07-11T04:07:54",
"upload_time_iso_8601": "2025-07-11T04:07:54.888180Z",
"url": "https://files.pythonhosted.org/packages/a8/20/8e5fcce36728a5ce303c500eaf6efffc29b736eb7cb2aab1b5bfd6e1d07c/aiotieba-4.6.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61d96c6f3b471bd22f457eabf4e4339e7b33bbf4bed9f20d171a7ede5f84121d",
"md5": "4589e0d354c02417c3707876c1a6f78e",
"sha256": "f7b921045cee9d0451c865cf2391de098bb8bf151156d5ad47371172e67573e2"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4589e0d354c02417c3707876c1a6f78e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.14,>=3.9",
"size": 302883,
"upload_time": "2025-07-11T04:07:56",
"upload_time_iso_8601": "2025-07-11T04:07:56.008817Z",
"url": "https://files.pythonhosted.org/packages/61/d9/6c6f3b471bd22f457eabf4e4339e7b33bbf4bed9f20d171a7ede5f84121d/aiotieba-4.6.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "938785da53c61a4543b1fa4d40eab9d9c88c00d9fdc4211f30fa540a15805b60",
"md5": "e4f7e547fceaacf6d7726c2b70191946",
"sha256": "592353e7ea2a532cd83cc05fb18e6451c68d5d5d65aa82e1d68631aed79c65df"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "e4f7e547fceaacf6d7726c2b70191946",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.14,>=3.9",
"size": 304317,
"upload_time": "2025-07-11T04:07:57",
"upload_time_iso_8601": "2025-07-11T04:07:57.479248Z",
"url": "https://files.pythonhosted.org/packages/93/87/85da53c61a4543b1fa4d40eab9d9c88c00d9fdc4211f30fa540a15805b60/aiotieba-4.6.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09bbd7477d07bb342dda392b7b72b290721a808c1339cbdebcb80141a5f452ee",
"md5": "4082ff3dd00fd074eb15a2d24a678c3e",
"sha256": "ce267e44153fed1329d6ee90c03e27fe2273d23e214f1842901c361a0c5d8a6d"
},
"downloads": -1,
"filename": "aiotieba-4.6.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "4082ff3dd00fd074eb15a2d24a678c3e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.14,>=3.9",
"size": 287227,
"upload_time": "2025-07-11T04:07:58",
"upload_time_iso_8601": "2025-07-11T04:07:58.579834Z",
"url": "https://files.pythonhosted.org/packages/09/bb/d7477d07bb342dda392b7b72b290721a808c1339cbdebcb80141a5f452ee/aiotieba-4.6.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "303133eb017effdab5b7fb4d12663b413b4bfb64ecff7f6e4fcc64f5c3be9c64",
"md5": "e43ddf3046bc57f651910fd06a231e83",
"sha256": "8f0a37951e6a0ab189470161dce6f97e90f9e47f3ae5d10e8674e998bd1e7072"
},
"downloads": -1,
"filename": "aiotieba-4.6.0.tar.gz",
"has_sig": false,
"md5_digest": "e43ddf3046bc57f651910fd06a231e83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.14,>=3.9",
"size": 208326,
"upload_time": "2025-07-11T04:07:59",
"upload_time_iso_8601": "2025-07-11T04:07:59.791564Z",
"url": "https://files.pythonhosted.org/packages/30/31/33eb017effdab5b7fb4d12663b413b4bfb64ecff7f6e4fcc64f5c3be9c64/aiotieba-4.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-11 04:07:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lumina37",
"github_project": "aiotieba",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "aiotieba"
}