获取一条一言。 :return:
()
| 990 | |
| 991 | |
| 992 | def one() -> str: |
| 993 | """ |
| 994 | 获取一条一言。 |
| 995 | :return: |
| 996 | """ |
| 997 | url = "https://v1.hitokoto.cn/" |
| 998 | res = requests.get(url).json() |
| 999 | return res["hitokoto"] + " ----" + res["from"] |
| 1000 | |
| 1001 | |
| 1002 | def add_notify_function(): |