Files
blusunny-qinglong/天行语录.py
2023-10-30 20:53:34 +08:00

30 lines
1.4 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# @author Sten
# 作者仓库:https://github.com/aefa6/QinglongScript.git
# 觉得不错麻烦点个star谢谢
# 自行修改19、20、21三行其中20行的api必填.
# 需要在天行提前注册获取api(https://www.tianapi.com/console/,数据管理-我的密钥key)并申请相应接口才能使用https://www.tianapi.com/list/
import requests
import json
import notify
pyurl = f'https://apis.tianapi.com/pyqwenan/index?key={api}' #朋友圈文案
hsurl = f'https://apis.tianapi.com/hsjz/index?key={api}' #失恋分手句子
caurl = f'https://apis.tianapi.com/caihongpi/index?key={api}' #彩虹屁
tiurl = f'https://apis.tianapi.com/tiangou/index?key={api}' #舔狗日志
duurl = f'https://apis.tianapi.com/dujitang/index?key={api}' #毒鸡汤
zhurl = f'https://apis.tianapi.com/zhanan/index?key={api}' #渣男语录
zaurl = f'https://apis.tianapi.com/zaoan/index?key={api}' #早安心语
waurl = f'https://apis.tianapi.com/wanan/index?key={api}' #晚安心语
saurl = f'https://apis.tianapi.com/saylove/index?key={api}' #土味情话
urls = [pyurl, tiurl, duurl] # 按照格式填写你要推送的内容对应的url默认是朋友圈文案、舔狗日志和毒鸡汤
api = "你的天行API key"
count = 2 # 相同类型推文的数量,默认是两条
contents = ""
for url in urls:
for i in range(count):
response = requests.get(url)
data = json.loads(response.text)
contents += data['result']['content'] + "\n" + "\n"
notify.send("语录", contents)