import string
import requests
SCKEY = '666'
url2 = '
https://api.tokyo.biliob233.com/user/check-in'cookie2 = '666'
def it():
headers = {
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36', 'cookie': cookie2
}
res =
requests.post(url=url2, headers=headers).text
f = open("bilibiliob.txt", 'w+')
f.write(res)
f.close()
# 微信推送
ssckey = SCKEY
send_url = '
https://sc.ftqq.com/' + ssckey + '.send'
with open('bilibiliob.txt', 'a+') as f2:
text = f2.read()
punctuation_string = string.punctuation
for i in punctuation_string:
text = text.replace(i, '')
if 'code1msg 未登录' or 'code1msg 已经签过到了' in text:
params = {
'text': 'bilibiliob 签到失败提醒'
}
else:
params = {
'text': 'bilibiliob 签到提醒'
}
requests.post(send_url, params=params)
def main_handler(event, context):
return it()
if __name__ == '__main__':
it()
程序能行了,可放在云函数上不行,请问怎么让云函数能读写文件,或者让程序不需要创建文件就能执行
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/785613
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.