吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 9509|回复: 56
收起左侧

[Python 转载] 有道云笔记每日签到脚本

  [复制链接]
cn流星 发表于 2021-2-11 19:25
本帖最后由 cn流星 于 2021-2-12 12:23 编辑

2021-2-12更新:
修正了79行的一个错误,谢谢提醒
看到很多留言需要,在此奉上github actiong食用脚本

https://github.com/luck-ying02/youdaoyunnote_sign

之前看到我上一个帖子有需要有道云笔记签到的,过年有空就写一写

因为懒得自己去抓包分析api了就直接参考了某个大佬的:https://github.com/QikaiXu/YoudaoNote-checkin
直接新建腾讯云函数 复制上去就能使用了,


不知道大家需不需要github action的,需要的留言,到时候附上github地址
代码:
[Asm] 纯文本查看 复制代码
import requests
import json
import time
import os
import hashlib
from requests.packages.urllib3.exceptions import InsecureRequestWarning
# 禁用安全请求警告
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)

# 配置各种key
# Server酱申请的skey
SCKEY = ''
# 钉钉机器人的 webhook
webhook = ''

# 配置通知方式 0=dingding 1=weixin 2=全都要 其他为不推送
notice = ''
#账号
username = ''
#密码
password = ''

global contents
contents = ''


#输出方式
def output(content):
    global contents
    content += '  '
    # 整合输出内容
    contents += content + '\n'
    content += '  '
    print(content)


#server酱推送
def server():
    global contents
    message = {"text": "有道云笔记签到通知!", "desp": contents}
    r = requests.post("https://sc.ftqq.com/" + SCKEY + ".send", data=message)
    if r.status_code == 200:
        print('[+]server酱已推送,请查收')


#钉钉消息推送
def dingtalk():
    webhook_url = webhook
    dd_header = {"Content-Type": "application/json", "Charset": "UTF-8"}
    global contents
    dd_message = {
        "msgtype": "text",
        "text": {
            "content": f'有道云笔记签到通知!\n{contents}'
        }
    }
    r = requests.post(url=webhook_url,
                      headers=dd_header,
                      data=json.dumps(dd_message))
    if r.status_code == 200:
        print('[+]钉钉消息已推送,请查收  ')


def sign():
    login_url = 'https://note.youdao.com/login/acc/urs/verify/check?app=web&product=YNOTE&tp=urstoken&cf=6&fr=1&systemName=&deviceType=&ru=https%3A%2F%2Fnote.youdao.com%2FsignIn%2F%2FloginCallback.html&er=https%3A%2F%2Fnote.youdao.com%2FsignIn%2F%2FloginCallback.html&vcode=&systemName=mac&deviceType=MacPC×tamp=1611466345699'
    parame = {
        'username': username,
        'password': hashlib.md5(password.encode('utf8')).hexdigest(),
    }
    session = requests.session()
    # 登录
    session.post(url=login_url, data=parame, verify=False)
    checkin_url = 'http://note.youdao.com/yws/mapi/user?method=checkin'

    # 签到
    response = session.post(url=checkin_url)
    if response.status_code == 200:
        # 格式话
        info = json.loads(response.text)
        # 一共签到获得
        total = info['total'] / 1048576
        # 本次签到获得空间
        space = info['space'] / 1048576
        # 当前时间
        times = time.strftime('%Y-%m-%d %H:%M:%S',
                              time.localtime(info['time'] / 1000))
        output('[+]用户: ' + username + ' 签到成功!')
        output('[+]当前签到时间:' + times)
        output('[+]签到获得:' + str(space) + 'MB')
        output('[+]总共获得:' + str(total) + 'MB')


def main():
    output('---开始【有道云笔记每日签到】---')
    sign()
    output('---结束【有道云笔记每日签到】---')
    if notice == '0':
        try:
            dingtalk()
        except Exception:
            print('[+]请检查钉钉配置是否正确')
    elif notice == '1':
        try:
            server()
        except Exception:
            print('[+]请检查server酱配置是否正确')
    elif notice == '2':
        try:
            dingtalk()
        except Exception:
            print('[+]请检查钉钉配置是否正确')
        try:
            server()
        except Exception:
            print('[+]请检查server酱配置是否正确')
    else:
        print('[+]选择不推送信息')


def main_handler(event, context):
    return main()


if __name__ == '__main__':
    main()



效果图:
111.png


支持 serveer酱和钉钉推送,或者不选

免费评分

参与人数 7吾爱币 +8 热心值 +6 收起 理由
storm + 2 + 1 热心回复!
jyboyabc + 1 + 1 谢谢@Thanks!
zecore + 1 + 1 谢谢@Thanks!
JokerX + 1 + 1 我是原作者,这个原始版本就是通过github action来自动签到的(只不过没各.
塞北的雪 + 1 [BUG]79行应该改成:info = json.loads(response.text)
Bayagin + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
奔跑的欧尼桑 + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

tiger_old 发表于 2021-2-19 16:06
为什么我复制代码然后运行会出现报错
PS E:\python_work> & C:/Users/tiger/AppData/Local/Programs/Python/Python35/python.exe e:/python_work/有道云签到.py
  File "e:/python_work/有道云签到.py", line 54
    "content": f'有道云笔记签到通知!\n{contents}'
haile319 发表于 2021-2-11 19:49
dhs347 发表于 2021-2-11 20:09
andyfky 发表于 2021-2-11 20:11
厉害呀,学习了。
天空の幻像 发表于 2021-2-11 20:27
哈哈,学习学习,这个厉害了
VTKme 发表于 2021-2-11 20:36
github发一下
zwjdujin 发表于 2021-2-11 20:50
Github发一下
柠檬Cat 发表于 2021-2-11 21:04
其实空间内存还好,有道云笔记的签到弹窗是真的烦
afti 发表于 2021-2-11 22:07
自动签到还是很方便的!
Tomatoman 发表于 2021-2-11 22:18
感谢分享有用的代码小技能,今天是大年三十,牛年大吉噢~
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 04:43

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表