mirror of
https://github.com/blusunny/qinglong.git
synced 2025-12-17 23:35:01 +08:00
Create 天行语录.py
This commit is contained in:
29
天行语录.py
Normal file
29
天行语录.py
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# @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)
|
||||||
Reference in New Issue
Block a user