| Name | aiotieba JSON |
| Version |
4.6.1
JSON |
| download |
| home_page | None |
| Summary | Asynchronous I/O Client for Baidu Tieba |
| upload_time | 2025-10-09 09:38:41 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | <3.15,>=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.15,>=3.9",
"maintainer_email": null,
"keywords": "baidu, tieba",
"author": null,
"author_email": "lumina37 <starry.qvq@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/db/8d/f90dfda2ccaf2b1d2af246f0d4fac22b647987683696f23e6c8c4c904419/aiotieba-4.6.1.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.1",
"project_urls": {
"Documentation": "https://aiotieba.cc/",
"Repository": "https://github.com/lumina37/aiotieba/"
},
"split_keywords": [
"baidu",
" tieba"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9946d42e5394f06c52d95ab4b9376ea051e5fbf259afd63f83173f527563009d",
"md5": "502eddc22e09eae2d9206e4ff92e1912",
"sha256": "09352feb69232f609f03cc50ed1b298a55d39956c99a34d1f12f378eb956c0fb"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "502eddc22e09eae2d9206e4ff92e1912",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.9",
"size": 302497,
"upload_time": "2025-10-09T09:37:18",
"upload_time_iso_8601": "2025-10-09T09:37:18.187768Z",
"url": "https://files.pythonhosted.org/packages/99/46/d42e5394f06c52d95ab4b9376ea051e5fbf259afd63f83173f527563009d/aiotieba-4.6.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0ccb6e52b7ccf36de644804fc2c3ed0ef618a3725eab8b587ee6e32a8a8a68b",
"md5": "07d55b425ed7ca888b85b2b4c0dc921b",
"sha256": "16e16b140ba509067083f0dc29c4887a2feb62ac6d5c9662e83e729f624b2745"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "07d55b425ed7ca888b85b2b4c0dc921b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.9",
"size": 302899,
"upload_time": "2025-10-09T09:37:20",
"upload_time_iso_8601": "2025-10-09T09:37:20.515800Z",
"url": "https://files.pythonhosted.org/packages/c0/cc/b6e52b7ccf36de644804fc2c3ed0ef618a3725eab8b587ee6e32a8a8a68b/aiotieba-4.6.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5aff4761938c11b3044aaa08829ecbb20cebfce03390ad685bbc4168d2a69b6",
"md5": "d2dfe6bd690d4a17a6ffeaef259cc269",
"sha256": "d09776c06dc71c849e424ecc9f8dbef49b5ea593aba1be1c570ca8aabc9c154f"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d2dfe6bd690d4a17a6ffeaef259cc269",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.9",
"size": 304491,
"upload_time": "2025-10-09T09:37:22",
"upload_time_iso_8601": "2025-10-09T09:37:22.237972Z",
"url": "https://files.pythonhosted.org/packages/f5/af/f4761938c11b3044aaa08829ecbb20cebfce03390ad685bbc4168d2a69b6/aiotieba-4.6.1-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": "5f2ef1be4645043c647bb477e3752da3e618f6c7fad53b646faf278006231b52",
"md5": "bbff2a9a32493beaa7fb4b4f941b33d0",
"sha256": "76db3b241121c573cfcf94c1f4e4e7e00f90325ca6703a16b309d1b4a6dd6f39"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "bbff2a9a32493beaa7fb4b4f941b33d0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.9",
"size": 304637,
"upload_time": "2025-10-09T09:37:24",
"upload_time_iso_8601": "2025-10-09T09:37:24.200495Z",
"url": "https://files.pythonhosted.org/packages/5f/2e/f1be4645043c647bb477e3752da3e618f6c7fad53b646faf278006231b52/aiotieba-4.6.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1116e07c80dbecde4e7fb78483d05f8d2906016b4dcb6c1e1faf668a528a9195",
"md5": "410030b32121a0d1e331990915940229",
"sha256": "ac2a6980497862ac3ce7ee8b342dc412d4f7238659a87666d5e6190dea7ebd60"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "410030b32121a0d1e331990915940229",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.15,>=3.9",
"size": 287444,
"upload_time": "2025-10-09T09:37:25",
"upload_time_iso_8601": "2025-10-09T09:37:25.532703Z",
"url": "https://files.pythonhosted.org/packages/11/16/e07c80dbecde4e7fb78483d05f8d2906016b4dcb6c1e1faf668a528a9195/aiotieba-4.6.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4646d289170de6328008a03c3575141c72c6637978ba6d74707bd246de00630",
"md5": "d9aee7e3f30bfb0d2101133ee3840ef1",
"sha256": "ab73488f1c9246805cd74dda7745d5a0967f435ad0e16e66d4ddefccc39be08e"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d9aee7e3f30bfb0d2101133ee3840ef1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.9",
"size": 302497,
"upload_time": "2025-10-09T09:37:26",
"upload_time_iso_8601": "2025-10-09T09:37:26.954729Z",
"url": "https://files.pythonhosted.org/packages/c4/64/6d289170de6328008a03c3575141c72c6637978ba6d74707bd246de00630/aiotieba-4.6.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e9c9ca40c8c34c6ac80f639dfef63055771cb9d9f7b80a468e3fef78b10c1cc",
"md5": "d590144310b17fc573d2ac45e5295b42",
"sha256": "74bb8b07578a3070752b667c3219c50fe6dd3eba04c5fc9bb9c25cdedb6ab4c1"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d590144310b17fc573d2ac45e5295b42",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.9",
"size": 302899,
"upload_time": "2025-10-09T09:37:28",
"upload_time_iso_8601": "2025-10-09T09:37:28.272922Z",
"url": "https://files.pythonhosted.org/packages/7e/9c/9ca40c8c34c6ac80f639dfef63055771cb9d9f7b80a468e3fef78b10c1cc/aiotieba-4.6.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a33eea34c07a9fe0a0e730e49a4ba797aa7a7611943bf237bf23cad3e2049fa",
"md5": "46f0cc4fff5fbc279b6c2eeffe376ff8",
"sha256": "b8e2f56734749d5b11da2ffcb5a79b98322782f5dde538b63a47d7c5aae1953c"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "46f0cc4fff5fbc279b6c2eeffe376ff8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.9",
"size": 304495,
"upload_time": "2025-10-09T09:37:29",
"upload_time_iso_8601": "2025-10-09T09:37:29.967667Z",
"url": "https://files.pythonhosted.org/packages/2a/33/eea34c07a9fe0a0e730e49a4ba797aa7a7611943bf237bf23cad3e2049fa/aiotieba-4.6.1-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": "70789cdf2dcb35e298e9ca97f490c8c039bc188d610591201ccf35055487e974",
"md5": "1dd28ff2d8f81fee51d43ea88e6f7f78",
"sha256": "ff60910d66d62512408d1fbb2cd3be66410f24968940105f8a9fff8211493747"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1dd28ff2d8f81fee51d43ea88e6f7f78",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.9",
"size": 304639,
"upload_time": "2025-10-09T09:37:31",
"upload_time_iso_8601": "2025-10-09T09:37:31.679054Z",
"url": "https://files.pythonhosted.org/packages/70/78/9cdf2dcb35e298e9ca97f490c8c039bc188d610591201ccf35055487e974/aiotieba-4.6.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d18f23b74d717205f95152208f87871f7bea8b03a7fe8ed5e88b83f45a2b240a",
"md5": "977080f4e1c9b5e4e167dfe8711a5a2b",
"sha256": "b4386cb71556b9c7a2cda101542ddcfa3162d4878d0ec54d2b4880cb4a1f4024"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "977080f4e1c9b5e4e167dfe8711a5a2b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.15,>=3.9",
"size": 287473,
"upload_time": "2025-10-09T09:37:33",
"upload_time_iso_8601": "2025-10-09T09:37:33.034310Z",
"url": "https://files.pythonhosted.org/packages/d1/8f/23b74d717205f95152208f87871f7bea8b03a7fe8ed5e88b83f45a2b240a/aiotieba-4.6.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "733b507df613ae077b3d0bbe7c00f264b9884ad66bb99d38efd476bfa7688d67",
"md5": "121dcfdb52c072ceb3d75a2a663e8015",
"sha256": "5bc96d26fd19b15277cc2f13068ad4a7cb083ffffbf7412f7a9d4dc0d327fddf"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "121dcfdb52c072ceb3d75a2a663e8015",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.9",
"size": 302446,
"upload_time": "2025-10-09T09:37:34",
"upload_time_iso_8601": "2025-10-09T09:37:34.720737Z",
"url": "https://files.pythonhosted.org/packages/73/3b/507df613ae077b3d0bbe7c00f264b9884ad66bb99d38efd476bfa7688d67/aiotieba-4.6.1-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c50f8d72cbd3573071142ee4faabaf2764370fc26b7ac3be9cae9eba4cb96d86",
"md5": "11daf4ef7143e157ecd661dbee574cc5",
"sha256": "521213d9308a0d274797833e675cbaf4993f24628604568c7ec1b7715256feee"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "11daf4ef7143e157ecd661dbee574cc5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.9",
"size": 302893,
"upload_time": "2025-10-09T09:37:36",
"upload_time_iso_8601": "2025-10-09T09:37:36.069639Z",
"url": "https://files.pythonhosted.org/packages/c5/0f/8d72cbd3573071142ee4faabaf2764370fc26b7ac3be9cae9eba4cb96d86/aiotieba-4.6.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60582066848c2e6c9b5e005489b2034d4ab10b141554cde78e63517da7acc697",
"md5": "6038a92b4926dc9918f08c3252320251",
"sha256": "f8962afd9a6f3c2d70ed14165efa74428454bc47e7113137a7ac403cd5e8f347"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6038a92b4926dc9918f08c3252320251",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.9",
"size": 304498,
"upload_time": "2025-10-09T09:37:37",
"upload_time_iso_8601": "2025-10-09T09:37:37.453436Z",
"url": "https://files.pythonhosted.org/packages/60/58/2066848c2e6c9b5e005489b2034d4ab10b141554cde78e63517da7acc697/aiotieba-4.6.1-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": "5ec71784495687811b819e959aa6c03cc816117eb5c2e1635689c76fbfe5abab",
"md5": "a4362827aba8cff96430f96d9a370ed3",
"sha256": "c0ea0d75a74402c28d1ffaad208fd82d3ef3db50654295c333f648a71d439045"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a4362827aba8cff96430f96d9a370ed3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.9",
"size": 304643,
"upload_time": "2025-10-09T09:37:38",
"upload_time_iso_8601": "2025-10-09T09:37:38.767194Z",
"url": "https://files.pythonhosted.org/packages/5e/c7/1784495687811b819e959aa6c03cc816117eb5c2e1635689c76fbfe5abab/aiotieba-4.6.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "062c7dbc76fb2b697ba7f14d79569c6341247177e3ad68305bd19e50e1cee0a9",
"md5": "ff96017f3273bfe8dbc83a4d2c532832",
"sha256": "669e1732a12209f4c8b9dbf7eca5fc484aa4f8dcc69a315444d2018d1105331a"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "ff96017f3273bfe8dbc83a4d2c532832",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.15,>=3.9",
"size": 287477,
"upload_time": "2025-10-09T09:37:40",
"upload_time_iso_8601": "2025-10-09T09:37:40.090710Z",
"url": "https://files.pythonhosted.org/packages/06/2c/7dbc76fb2b697ba7f14d79569c6341247177e3ad68305bd19e50e1cee0a9/aiotieba-4.6.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9324c3de9c671374cb97c1e9be68b8895ce4b825cd88bf363bde8c94b54aa93",
"md5": "56a508d0bb3912ad853935534af064b8",
"sha256": "9ee0dee1f760e2be406af22e5ad729198e1a920aba382f634a85b05617362f80"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "56a508d0bb3912ad853935534af064b8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 302442,
"upload_time": "2025-10-09T09:37:41",
"upload_time_iso_8601": "2025-10-09T09:37:41.411022Z",
"url": "https://files.pythonhosted.org/packages/c9/32/4c3de9c671374cb97c1e9be68b8895ce4b825cd88bf363bde8c94b54aa93/aiotieba-4.6.1-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06af0e8b684e31c27e7dd2d844edfd9c9f932aa638919df1b8c7e202fef45cac",
"md5": "5609ed24a90d4df446140317d9f5ef29",
"sha256": "92bd939118bfcb29a43b6843c61d539e652c94f73182cea37e9c4ec7f370c66d"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5609ed24a90d4df446140317d9f5ef29",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 302898,
"upload_time": "2025-10-09T09:37:42",
"upload_time_iso_8601": "2025-10-09T09:37:42.779435Z",
"url": "https://files.pythonhosted.org/packages/06/af/0e8b684e31c27e7dd2d844edfd9c9f932aa638919df1b8c7e202fef45cac/aiotieba-4.6.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dff26c4406964ddd22a203291d6b44146f298a2b68c4445b824b5408a56c35a9",
"md5": "1d07ed0a5435aae084015fb7b500018b",
"sha256": "aa86e5615f3b611e33d4bf2345153b9bffa233482fa3e7612613f2387b61a3e4"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "1d07ed0a5435aae084015fb7b500018b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 304494,
"upload_time": "2025-10-09T09:37:44",
"upload_time_iso_8601": "2025-10-09T09:37:44.646317Z",
"url": "https://files.pythonhosted.org/packages/df/f2/6c4406964ddd22a203291d6b44146f298a2b68c4445b824b5408a56c35a9/aiotieba-4.6.1-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": "7b592b9a624059c0f64191ee52e5a5643c4bb03a5ec57d2cc2f3b63a775744b2",
"md5": "6dc454303d6ea5d26dc83d5b59bcd9fd",
"sha256": "3c56e3a93cec91ef3fae26df139cd88c2a1be6e2398ee21beefb78c648224435"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6dc454303d6ea5d26dc83d5b59bcd9fd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 304638,
"upload_time": "2025-10-09T09:37:46",
"upload_time_iso_8601": "2025-10-09T09:37:46.112030Z",
"url": "https://files.pythonhosted.org/packages/7b/59/2b9a624059c0f64191ee52e5a5643c4bb03a5ec57d2cc2f3b63a775744b2/aiotieba-4.6.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a17f7c4049a4841f3be8363acfe3a4fdb2e183840db79e4d35df1f68e46101b3",
"md5": "48445f518d4ed5e377bbb642afa26e5d",
"sha256": "634553859db2c4c9e8f467fc8f0736dd5df91d3f5503e12f7a427abf9e574781"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "48445f518d4ed5e377bbb642afa26e5d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 302495,
"upload_time": "2025-10-09T09:37:49",
"upload_time_iso_8601": "2025-10-09T09:37:49.337603Z",
"url": "https://files.pythonhosted.org/packages/a1/7f/7c4049a4841f3be8363acfe3a4fdb2e183840db79e4d35df1f68e46101b3/aiotieba-4.6.1-cp313-cp313t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba0bcf16bf0a5b500d084cc9d60ae602143048e94409093d1a764ba81df7f9b2",
"md5": "8c7f9781bd4651170ef56009d62d3ead",
"sha256": "5ae24af555c28a806d08d5671f9c1909a7371a112ada69143a56816e79c8eef2"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8c7f9781bd4651170ef56009d62d3ead",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 302958,
"upload_time": "2025-10-09T09:37:50",
"upload_time_iso_8601": "2025-10-09T09:37:50.655757Z",
"url": "https://files.pythonhosted.org/packages/ba/0b/cf16bf0a5b500d084cc9d60ae602143048e94409093d1a764ba81df7f9b2/aiotieba-4.6.1-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8d447e2ea7a3f048f45eeb1418b26fab421ef56f0547773e4cb75d5bc254fd3",
"md5": "ec871c1e8bdb0508943563bcff309bde",
"sha256": "43263ebb7dfbf699001728f54a56bc6f0b57ff54244eaabafba7f3aa3a8a073b"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ec871c1e8bdb0508943563bcff309bde",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 304547,
"upload_time": "2025-10-09T09:37:52",
"upload_time_iso_8601": "2025-10-09T09:37:52.044547Z",
"url": "https://files.pythonhosted.org/packages/d8/d4/47e2ea7a3f048f45eeb1418b26fab421ef56f0547773e4cb75d5bc254fd3/aiotieba-4.6.1-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": "dacf60f8a243c47ee792d2eac3aa8692d646606dbbb4e70611cf241e4e7a7237",
"md5": "355d9e6b6ebbdaea269e5b190a92f7c3",
"sha256": "58f121c951c2e583cf19bbc1a365b932df3b255c27a51ea79fe29ed309bf6ebc"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "355d9e6b6ebbdaea269e5b190a92f7c3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 304686,
"upload_time": "2025-10-09T09:37:53",
"upload_time_iso_8601": "2025-10-09T09:37:53.464163Z",
"url": "https://files.pythonhosted.org/packages/da/cf/60f8a243c47ee792d2eac3aa8692d646606dbbb4e70611cf241e4e7a7237/aiotieba-4.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c42f4a767b5d1adc773a0b0bba39d412e90b1ec984ddffe4ccc3ca5eb85f2837",
"md5": "9f48ae5c12b8adbf91a03833e3a47691",
"sha256": "7c57525c3b5bb3c15a45cd6eff77061b9604c5b781bae07856df17d89f1b8539"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "9f48ae5c12b8adbf91a03833e3a47691",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 287506,
"upload_time": "2025-10-09T09:37:54",
"upload_time_iso_8601": "2025-10-09T09:37:54.958881Z",
"url": "https://files.pythonhosted.org/packages/c4/2f/4a767b5d1adc773a0b0bba39d412e90b1ec984ddffe4ccc3ca5eb85f2837/aiotieba-4.6.1-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1256e4d0f171bc79a5401c3df0957bd45fbb1e95a87f53c0de197190a25a920d",
"md5": "5bea3918bb6247b000639b5c92eaa087",
"sha256": "ed0ee416476e12b1603a4362cc144a83f90208d961b42d5e9a96ea137eac86b6"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "5bea3918bb6247b000639b5c92eaa087",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.15,>=3.9",
"size": 287475,
"upload_time": "2025-10-09T09:37:47",
"upload_time_iso_8601": "2025-10-09T09:37:47.500991Z",
"url": "https://files.pythonhosted.org/packages/12/56/e4d0f171bc79a5401c3df0957bd45fbb1e95a87f53c0de197190a25a920d/aiotieba-4.6.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0cf1f8c9296e72e4f92057bc3148a53b6dc6c3123cbce76f19606a077219748",
"md5": "bfcb8e77beb742c958c446f478d1c771",
"sha256": "219719f84eb79e721b502bf714f75cebd0ff0943b2ad8a260ee03de7ec3dd15b"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "bfcb8e77beb742c958c446f478d1c771",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 302443,
"upload_time": "2025-10-09T09:37:56",
"upload_time_iso_8601": "2025-10-09T09:37:56.327984Z",
"url": "https://files.pythonhosted.org/packages/d0/cf/1f8c9296e72e4f92057bc3148a53b6dc6c3123cbce76f19606a077219748/aiotieba-4.6.1-cp314-cp314-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9361b77deca7cb238c32b57c3f4fcfbdf40608c0f96cf99a07e4032d6f3cbd1",
"md5": "60dc317f697d3791a0575955010d23f5",
"sha256": "fffbb658cc2dd5292842e1105b4135f174a9f71f76854c183640aad05445cee8"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "60dc317f697d3791a0575955010d23f5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 302900,
"upload_time": "2025-10-09T09:37:58",
"upload_time_iso_8601": "2025-10-09T09:37:58.056817Z",
"url": "https://files.pythonhosted.org/packages/c9/36/1b77deca7cb238c32b57c3f4fcfbdf40608c0f96cf99a07e4032d6f3cbd1/aiotieba-4.6.1-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0ad16327d6e7999f77b571dda7ff8c0f4cbc85890fe68b7ea747456a82ba620",
"md5": "b1f554c156b9b46e7b19c19673d6414a",
"sha256": "db3e35a8e25186912e1886445f3ab386abd3c75fc72088286fe1db27c2aeb930"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "b1f554c156b9b46e7b19c19673d6414a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 304492,
"upload_time": "2025-10-09T09:37:59",
"upload_time_iso_8601": "2025-10-09T09:37:59.460159Z",
"url": "https://files.pythonhosted.org/packages/e0/ad/16327d6e7999f77b571dda7ff8c0f4cbc85890fe68b7ea747456a82ba620/aiotieba-4.6.1-cp314-cp314-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": "49fcd56b5c40513f421ef800edd1c8417645ca8a01b3ac9dc88d1583e6b779f4",
"md5": "57dba58c03405aececc234fd1ec0658a",
"sha256": "c9e42d1f7390dd2bb09ee7612cab55125173ddadc874bf6e46f427df0daf61d6"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "57dba58c03405aececc234fd1ec0658a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 304637,
"upload_time": "2025-10-09T09:38:05",
"upload_time_iso_8601": "2025-10-09T09:38:05.833779Z",
"url": "https://files.pythonhosted.org/packages/49/fc/d56b5c40513f421ef800edd1c8417645ca8a01b3ac9dc88d1583e6b779f4/aiotieba-4.6.1-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "032a30762939a363da93e5874ef90cb6aeb35754415b610959f92e905d578ea7",
"md5": "fec8052b38e340d26dfa83b195b41ce6",
"sha256": "7517c99a7aa1aacfe60ea8fb3648d5777aef118425aa700824524757872edca2"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "fec8052b38e340d26dfa83b195b41ce6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 302498,
"upload_time": "2025-10-09T09:38:08",
"upload_time_iso_8601": "2025-10-09T09:38:08.900737Z",
"url": "https://files.pythonhosted.org/packages/03/2a/30762939a363da93e5874ef90cb6aeb35754415b610959f92e905d578ea7/aiotieba-4.6.1-cp314-cp314t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d96afd60f8cc0a0a86f783c592100e310b08271b3845336c28cb984df2330a82",
"md5": "6badeba2ef05922224a3ec6244904d98",
"sha256": "ccc10eff6ed6f1c3d79bba0f370aea2d2e6320e07df9e2f157f38d11662a0e5f"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6badeba2ef05922224a3ec6244904d98",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 302964,
"upload_time": "2025-10-09T09:38:10",
"upload_time_iso_8601": "2025-10-09T09:38:10.226875Z",
"url": "https://files.pythonhosted.org/packages/d9/6a/fd60f8cc0a0a86f783c592100e310b08271b3845336c28cb984df2330a82/aiotieba-4.6.1-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff22434aa1ca5663dba66493f3f7fc0e2e117b3c7911d4bd13f4447664fd96ff",
"md5": "4aee02b49ba2fc64f9b69b35b32bea16",
"sha256": "c05cb735ec1aedc0d044e5651cb7b4637b08eb39831e7888f6cee46b492006b2"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4aee02b49ba2fc64f9b69b35b32bea16",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 304551,
"upload_time": "2025-10-09T09:38:11",
"upload_time_iso_8601": "2025-10-09T09:38:11.952264Z",
"url": "https://files.pythonhosted.org/packages/ff/22/434aa1ca5663dba66493f3f7fc0e2e117b3c7911d4bd13f4447664fd96ff/aiotieba-4.6.1-cp314-cp314t-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": "36ea461171766bb3983f98ad7486c20db9991410dc53cd87498999fb488d9887",
"md5": "043b73cfec752b1c89b40e70b3049f9a",
"sha256": "c7e824bf9727c7f417a61f27404f7a7d23173ea51849a8fcec230ba98df6b86f"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "043b73cfec752b1c89b40e70b3049f9a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 304687,
"upload_time": "2025-10-09T09:38:13",
"upload_time_iso_8601": "2025-10-09T09:38:13.334824Z",
"url": "https://files.pythonhosted.org/packages/36/ea/461171766bb3983f98ad7486c20db9991410dc53cd87498999fb488d9887/aiotieba-4.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "314d4521efcc1489d5d25d3b55890a9a8a4b48262490deed2ff82c8a647d4fb7",
"md5": "d1653221f3e4436192246c89359d4467",
"sha256": "d9eba69a47eae67cdab049ae4cb218079cfa00115fcb76792e5a4ae017cd3dd9"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "d1653221f3e4436192246c89359d4467",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 289272,
"upload_time": "2025-10-09T09:38:15",
"upload_time_iso_8601": "2025-10-09T09:38:15.686277Z",
"url": "https://files.pythonhosted.org/packages/31/4d/4521efcc1489d5d25d3b55890a9a8a4b48262490deed2ff82c8a647d4fb7/aiotieba-4.6.1-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72a889a71270931d02710716eb0ff5a3474877a333482f58e6a86187181f4e0b",
"md5": "33d417223aaa2776f9cb13c7730fcf78",
"sha256": "837435b56b14e2fa63b0025fd08a7fd75a6b173a117ee57f808bd88c359c7251"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "33d417223aaa2776f9cb13c7730fcf78",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": "<3.15,>=3.9",
"size": 289233,
"upload_time": "2025-10-09T09:38:07",
"upload_time_iso_8601": "2025-10-09T09:38:07.192678Z",
"url": "https://files.pythonhosted.org/packages/72/a8/89a71270931d02710716eb0ff5a3474877a333482f58e6a86187181f4e0b/aiotieba-4.6.1-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec951f1e961b359556b89fa76fa79d59a20a2f9fd9aa0554be8198c127d45163",
"md5": "4a7ae7d6e21018657628cbbc498f69d7",
"sha256": "9702d67ef7968eb03fe9acce2511af5ad8c971563c72a63545adc8ef8807447a"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4a7ae7d6e21018657628cbbc498f69d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.15,>=3.9",
"size": 302498,
"upload_time": "2025-10-09T09:38:17",
"upload_time_iso_8601": "2025-10-09T09:38:17.092373Z",
"url": "https://files.pythonhosted.org/packages/ec/95/1f1e961b359556b89fa76fa79d59a20a2f9fd9aa0554be8198c127d45163/aiotieba-4.6.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe6985b70eece05264867226b28f73290e3623742dd9377923e627dfe23c560a",
"md5": "e14237952699dd26dc43f5c61feff468",
"sha256": "c0a8b989779a635debd5c537feeaa15b973d4a3bd106be916361b5b1b3f3183f"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e14237952699dd26dc43f5c61feff468",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.15,>=3.9",
"size": 302899,
"upload_time": "2025-10-09T09:38:18",
"upload_time_iso_8601": "2025-10-09T09:38:18.444755Z",
"url": "https://files.pythonhosted.org/packages/fe/69/85b70eece05264867226b28f73290e3623742dd9377923e627dfe23c560a/aiotieba-4.6.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f61b0c00d0710f144a0bf73b3cfddd64072772877bb43057f3b7bedf78a9301",
"md5": "8172c961ea9c8ff092d6379680d006aa",
"sha256": "a235f0c4549a17f1094b86c64eb35d5160d5e478425fe6cd6f6fca145faceeeb"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8172c961ea9c8ff092d6379680d006aa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.15,>=3.9",
"size": 304489,
"upload_time": "2025-10-09T09:38:19",
"upload_time_iso_8601": "2025-10-09T09:38:19.816509Z",
"url": "https://files.pythonhosted.org/packages/2f/61/b0c00d0710f144a0bf73b3cfddd64072772877bb43057f3b7bedf78a9301/aiotieba-4.6.1-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": "ccc659dcc7f007899a87b2f5d599dc28b0a432dc7326865dc7a2fbc9e5df9a84",
"md5": "05a2db85676e151b68f690106cd9135e",
"sha256": "4c68f905cab05b4de7242964be3340fc848b44d9541c29e5d32819b4d1f3534b"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "05a2db85676e151b68f690106cd9135e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.15,>=3.9",
"size": 304638,
"upload_time": "2025-10-09T09:38:21",
"upload_time_iso_8601": "2025-10-09T09:38:21.148259Z",
"url": "https://files.pythonhosted.org/packages/cc/c6/59dcc7f007899a87b2f5d599dc28b0a432dc7326865dc7a2fbc9e5df9a84/aiotieba-4.6.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f15af95cf87cec5da9538678ff8176b9d0d2c8d853be4afdd4e673497cb7d12",
"md5": "f3750d61647deb87564051f6e7018696",
"sha256": "5e6f1cb8736209cf8c1e33dc8901c4dbb95450fb584eb82a66bd534856b250d1"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "f3750d61647deb87564051f6e7018696",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.15,>=3.9",
"size": 287443,
"upload_time": "2025-10-09T09:38:22",
"upload_time_iso_8601": "2025-10-09T09:38:22.548557Z",
"url": "https://files.pythonhosted.org/packages/4f/15/af95cf87cec5da9538678ff8176b9d0d2c8d853be4afdd4e673497cb7d12/aiotieba-4.6.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4fb998a06134f0999e2f145a9e83100a1b194e36d0f7afcf5a5ad5fdf1d2566",
"md5": "f1ea3cc563179864b3442a6c5780b6ea",
"sha256": "813ec47d026867e8410d50b3d88670e57d2d2ba433daddc72cd7b9ee2cc2e586"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "f1ea3cc563179864b3442a6c5780b6ea",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.15,>=3.9",
"size": 302573,
"upload_time": "2025-10-09T09:38:24",
"upload_time_iso_8601": "2025-10-09T09:38:24.291555Z",
"url": "https://files.pythonhosted.org/packages/e4/fb/998a06134f0999e2f145a9e83100a1b194e36d0f7afcf5a5ad5fdf1d2566/aiotieba-4.6.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92b6aae63e3ef4b1aa8a1f9e94da9e16a13f258d001ef02695b62f8c9428a22c",
"md5": "5d2036f1312015b939af25aa51ab8279",
"sha256": "c6f964ea77ebd4fd44054f9c9cba6c64f3745c25e2c4ca167e4ff863d0e8c695"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5d2036f1312015b939af25aa51ab8279",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.15,>=3.9",
"size": 302983,
"upload_time": "2025-10-09T09:38:25",
"upload_time_iso_8601": "2025-10-09T09:38:25.685125Z",
"url": "https://files.pythonhosted.org/packages/92/b6/aae63e3ef4b1aa8a1f9e94da9e16a13f258d001ef02695b62f8c9428a22c/aiotieba-4.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41682678b798c06157f0c88b29b41f56a6b335d5a1795101a026365f5df28327",
"md5": "4453087a70093fcb7e1d38d4b14b44f3",
"sha256": "c6ea3833afa6a5cf0fde6e4ddcaae133cde591a16cc34c8f10d57e57a16408da"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4453087a70093fcb7e1d38d4b14b44f3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.15,>=3.9",
"size": 304557,
"upload_time": "2025-10-09T09:38:27",
"upload_time_iso_8601": "2025-10-09T09:38:27.059438Z",
"url": "https://files.pythonhosted.org/packages/41/68/2678b798c06157f0c88b29b41f56a6b335d5a1795101a026365f5df28327/aiotieba-4.6.1-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": "1adb68fc458944827e340eaffbf112f59fc0ff687255ef75bf74e447bab023e0",
"md5": "ce605b3dd0ba3d2413a0607d9b559025",
"sha256": "e7b7a5cfa1136af7d38917328f5f58ae775ca9201bd279cbaa2b51a2cc156443"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ce605b3dd0ba3d2413a0607d9b559025",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": "<3.15,>=3.9",
"size": 287456,
"upload_time": "2025-10-09T09:38:28",
"upload_time_iso_8601": "2025-10-09T09:38:28.953838Z",
"url": "https://files.pythonhosted.org/packages/1a/db/68fc458944827e340eaffbf112f59fc0ff687255ef75bf74e447bab023e0/aiotieba-4.6.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9da2a2ad5127e65ec8937dcaa7edeead30db0028ec2c0aa97ab63e4a92d5ea52",
"md5": "94de20ea6fbbc8e92de4c12f5ded0746",
"sha256": "634c5ce5203706b88de74cce6984c725db46aa3e4f6f30d94611ad74359a3ce1"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "94de20ea6fbbc8e92de4c12f5ded0746",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.15,>=3.9",
"size": 302572,
"upload_time": "2025-10-09T09:38:30",
"upload_time_iso_8601": "2025-10-09T09:38:30.384606Z",
"url": "https://files.pythonhosted.org/packages/9d/a2/a2ad5127e65ec8937dcaa7edeead30db0028ec2c0aa97ab63e4a92d5ea52/aiotieba-4.6.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34ac2885399ad396100ca36c135ed580b525510b6ff570b53d6ed513bbd31fc3",
"md5": "fc053f9d6510381ddd8a03d058823366",
"sha256": "5e4799675405d3d0c018522a52d97e3298b7fe2d958c9da892c41795ed8eff15"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fc053f9d6510381ddd8a03d058823366",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.15,>=3.9",
"size": 302978,
"upload_time": "2025-10-09T09:38:31",
"upload_time_iso_8601": "2025-10-09T09:38:31.772283Z",
"url": "https://files.pythonhosted.org/packages/34/ac/2885399ad396100ca36c135ed580b525510b6ff570b53d6ed513bbd31fc3/aiotieba-4.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32a0dce338e62270af382afa68307dc56093bed147abeb3329e69a26ebce4bbe",
"md5": "83e09356c5cff06efe09fc2a13fbac86",
"sha256": "8615b422567c415c8f02d175a0b63091ec7cc5bdc0ade47e3665008ceac6126b"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "83e09356c5cff06efe09fc2a13fbac86",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.15,>=3.9",
"size": 304563,
"upload_time": "2025-10-09T09:38:33",
"upload_time_iso_8601": "2025-10-09T09:38:33.150043Z",
"url": "https://files.pythonhosted.org/packages/32/a0/dce338e62270af382afa68307dc56093bed147abeb3329e69a26ebce4bbe/aiotieba-4.6.1-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": "306fb9ba7a58f75f0cab8d8b722b50c66c9739651b730c74cc7ed0ddda0f456c",
"md5": "893a1a0d2da7dbc395dd16a41dd0a6f7",
"sha256": "da10e64fb85a3e84782c3fbc5e4ae26e970cf0edc2da3ee769d53aacbcf80c9e"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp311-pypy311_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "893a1a0d2da7dbc395dd16a41dd0a6f7",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": "<3.15,>=3.9",
"size": 287451,
"upload_time": "2025-10-09T09:38:34",
"upload_time_iso_8601": "2025-10-09T09:38:34.917041Z",
"url": "https://files.pythonhosted.org/packages/30/6f/b9ba7a58f75f0cab8d8b722b50c66c9739651b730c74cc7ed0ddda0f456c/aiotieba-4.6.1-pp311-pypy311_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ca5cc7431e745a6e18ef90ac6db99fb9a232443b56209083b75740500fa19ea",
"md5": "7e0c127be84ee110f6b075048e2a2ca5",
"sha256": "b602f2987c92e2a0e689280684a46dbb33146ecbad8d8711a74a64f02fbabeb4"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "7e0c127be84ee110f6b075048e2a2ca5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.15,>=3.9",
"size": 302571,
"upload_time": "2025-10-09T09:38:36",
"upload_time_iso_8601": "2025-10-09T09:38:36.310452Z",
"url": "https://files.pythonhosted.org/packages/7c/a5/cc7431e745a6e18ef90ac6db99fb9a232443b56209083b75740500fa19ea/aiotieba-4.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "499e28b25733b4fba5573ff9ab892941a9fba85604c6de56f5b0c2de9e627f67",
"md5": "57b0815c6c67dcd05968753b6618e834",
"sha256": "c3b8132adcbed7b095cd2a73fc11dbbc4d91c31eb79548daeea006e19a89b68c"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "57b0815c6c67dcd05968753b6618e834",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.15,>=3.9",
"size": 302983,
"upload_time": "2025-10-09T09:38:37",
"upload_time_iso_8601": "2025-10-09T09:38:37.754086Z",
"url": "https://files.pythonhosted.org/packages/49/9e/28b25733b4fba5573ff9ab892941a9fba85604c6de56f5b0c2de9e627f67/aiotieba-4.6.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "73df795f08539b538655d5c4a70b600456824baa1bae86bd665a64c5c3edda7f",
"md5": "02b1e440dc5ec5f3246effeccc6189c2",
"sha256": "217a9c0d3f49f2e6a5506cd01eb1ac50b282c79c1419480937054a08912ee856"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "02b1e440dc5ec5f3246effeccc6189c2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.15,>=3.9",
"size": 304555,
"upload_time": "2025-10-09T09:38:39",
"upload_time_iso_8601": "2025-10-09T09:38:39.178621Z",
"url": "https://files.pythonhosted.org/packages/73/df/795f08539b538655d5c4a70b600456824baa1bae86bd665a64c5c3edda7f/aiotieba-4.6.1-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": "462f9c3c304513a82faf799ae69cc4377f261fd277afa3f56810010b199ed299",
"md5": "f8440abead27e284bde7370cd515209a",
"sha256": "04e0cc2bda8b1d1b865e3018059bf45c1351414162405af0b82487ea2a4f03e4"
},
"downloads": -1,
"filename": "aiotieba-4.6.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f8440abead27e284bde7370cd515209a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": "<3.15,>=3.9",
"size": 287458,
"upload_time": "2025-10-09T09:38:40",
"upload_time_iso_8601": "2025-10-09T09:38:40.574127Z",
"url": "https://files.pythonhosted.org/packages/46/2f/9c3c304513a82faf799ae69cc4377f261fd277afa3f56810010b199ed299/aiotieba-4.6.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db8df90dfda2ccaf2b1d2af246f0d4fac22b647987683696f23e6c8c4c904419",
"md5": "c7a857b7a0085a375886cdaf9a98edd5",
"sha256": "45f04f9c198f6146f535603ffae9eada880f0df77b36fdfa7512bf9bdb017eee"
},
"downloads": -1,
"filename": "aiotieba-4.6.1.tar.gz",
"has_sig": false,
"md5_digest": "c7a857b7a0085a375886cdaf9a98edd5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.15,>=3.9",
"size": 208586,
"upload_time": "2025-10-09T09:38:41",
"upload_time_iso_8601": "2025-10-09T09:38:41.884334Z",
"url": "https://files.pythonhosted.org/packages/db/8d/f90dfda2ccaf2b1d2af246f0d4fac22b647987683696f23e6c8c4c904419/aiotieba-4.6.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-09 09:38:41",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lumina37",
"github_project": "aiotieba",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "aiotieba"
}