Browse Source

添加一言

pull/15/head
张洛 3 years ago
parent
commit
16d759489d
  1. 2
      README.md
  2. 7
      bilibili.py
  3. 12
      checksendNotify.py
  4. 2
      hlx.py

2
README.md

@ -18,7 +18,7 @@
### 1拉取仓库 ### 1拉取仓库
ql repo https://gitee.com/zhangluo0104/check.git '' '^checksendNotify' ql repo https://gitee.com/zhangluo0104/check.git "" "^checksendNotify"
### 2参数列表 ### 2参数列表

7
bilibili.py

@ -330,12 +330,7 @@ class BiliBiliCheckIn(object):
if __name__ == "__main__": if __name__ == "__main__":
# { str = { """bilibili_cookie": "CURRENT_FNVAL=80; _uuid=E78B9867-686F-3A27-313E-BFEDFEE09F3000008infoc; buvid3=8EAD6FC6-F814-4B01-AE8F-DFD3075CD609138370infoc; blackside_state=1; LIVE_BUVID=AUTO7415999020731979; rpdid=|(J~Rk|)kukJ0J'ulmmm|k|)R; buvid_fp=8EAD6FC6-F814-4B01-AE8F-DFD3075CD609138370infoc; buvid_fp_plain=8EAD6FC6-F814-4B01-AE8F-DFD3075CD609138370infoc; SESSDATA=e1e3d896%2C1636977456%2C2c051%2A51; bili_jct=ed3d260fa764e41ee7af53437dad8245; DedeUserID=104387005; DedeUserID__ckMd5=777721dee5d2cbba; sid=8nutoc6o; fingerprint3=bd483e5d53116cffede088c3f95b4033; fingerprint=9242077640b48d939b5ba29986fe30d4; fingerprint_s=e67c1fa987ff6289b4d7ec89ba606618; PVID=1; bp_video_offset_104387005=546313440551706948""","coin_num": 0, "coin_type": 1, "silver2coin": true }
# "bilibili_cookie": "_uuid=xxxxxx; rpdid=xxxxxx; LIVE_BUVID=xxxxxx; PVID=xxxxxx; blackside_state=xxxxxx; CURRENT_FNVAL=xxxxxx; buvid3=xxxxxx; fingerprint3=xxxxxx; fingerprint=xxxxxx; buivd_fp=xxxxxx; buvid_fp_plain=xxxxxx; DedeUserID=xxxxxx; DedeUserID__ckMd5=xxxxxx; SESSDATA=xxxxxx; bili_jct=xxxxxx; bsource=xxxxxx; finger=xxxxxx; fingerprint_s=xxxxxx;",
# "coin_num": 0,
# "coin_type": 1,
# "silver2coin": true
# }
if 'bilibili' in os.environ: if 'bilibili' in os.environ:
print('哔哩哔哩签到开始') print('哔哩哔哩签到开始')
_check_item=json.loads(os.environ.get('bilibili')) _check_item=json.loads(os.environ.get('bilibili'))

12
checksendNotify.py

@ -338,6 +338,16 @@ class WeCom:
return respone["errmsg"] return respone["errmsg"]
def one():
url = 'https://v1.hitokoto.cn/'
res = requests.get(url).json()
# noinspection PyBroadException
try:
result = res['hitokoto'] + ' ---' + res['from']
except:
return '出错了请检查'
return result
def send(title, content): def send(title, content):
""" """
使用 bark, telegram bot, dingding bot, serverJ 发送手机推送 使用 bark, telegram bot, dingding bot, serverJ 发送手机推送
@ -345,7 +355,7 @@ def send(title, content):
:param content: :param content:
:return: :return:
""" """
content += '\n\n\n开源免费By: https://gitee.com/zhangluo0104/check.git' content += f'{one()}\n\n\n开源免费By: https://gitee.com/zhangluo0104/check.git'
for i in notify_mode: for i in notify_mode:
if i == 'bark': if i == 'bark':
if BARK: if BARK:

2
hlx.py

@ -102,7 +102,7 @@ def start():
print('已经在环境中找到用户名和密码,开始执行程序') print('已经在环境中找到用户名和密码,开始执行程序')
res = hlx(os.environ['hlx_username'], os.environ['hlx_password']) res = hlx(os.environ['hlx_username'], os.environ['hlx_password'])
result = f' {scriptName} \n {res}' result = f' {scriptName} \n {res}'
send(result) send("葫芦侠",result)
else: else:
print('未找到用户名和密码停止执行') print('未找到用户名和密码停止执行')

Loading…
Cancel
Save