Skip to content

Commit

Permalink
chore: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lumina37 committed Mar 20, 2024
1 parent 7f2d858 commit 27e9487
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@ tid=8537699088 text=记录一下自己人生第一次当“老师”的经历^_^
## 项目特色

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

## 友情链接

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

## 特别鸣谢

Expand Down
15 changes: 8 additions & 7 deletions docs/tutorial/many_utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,25 +146,26 @@ async def main() -> None:
asyncio.run(main())
```

## 拒绝所有解封申诉
## 清除旧版乱码昵称

```python
import asyncio

from aiotieba_reviewer import get_account

import aiotieba as tb


async def main() -> None:
async def main():
async with tb.Client("在此处输入你的BDUSS") as client:
fname = "待拒绝申诉的贴吧名"
while appeals := await client.get_unblock_appeals(fname, rn=30):
await client.handle_unblock_appeals(fname, [a.appeal_id for a in appeals])
user = await client.get_self_info(tb.ReqUInfo.USER_NAME)
await client.set_nickname_old(user.user_name)


asyncio.run(main())
```

## 清空default账号的粉丝列表(无法复原的危险操作,请谨慎使用!)
## 清空粉丝列表(无法复原的危险操作,请谨慎使用!)

```python
import asyncio
Expand All @@ -181,7 +182,7 @@ async def main() -> None:
asyncio.run(main())
```

## 清除default账号的所有历史回复(无法复原的危险操作,请谨慎使用!)
## 清除所有历史回复(无法复原的危险操作,请谨慎使用!)

```python
import asyncio
Expand Down

0 comments on commit 27e9487

Please sign in to comment.