handsome主题用py脚本发送时光机以及采集舔狗日志

chen'mo
2020-05-06 / 0 评论 / 2,527 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于1970年01月01日,已超过20110天没有更新,若内容或图片失效,请留言反馈。

handsome目前有微信发送和google浏览器发送时光机
本人技术有限写了个py发送的脚本

# -*- coding: utf-8 -*-
import requests
import hashlib

key = '11111111' #时光机验证编码
s = requests.Session()
def getmd5(s):
    return hashlib.md5(s.encode('utf-8')).hexdigest()

date = {
    "action": "send_talk",
    "time_code": getmd5(str(key)),
    "cid": "146",  #时光机cid
    "token":"crx", #识别浏览器还是微信改成其他的不显示
    "content": "来自py脚本", #发送文字
    "msg_type": "text",
    "mediaId": "1"
}
url = 'https://cdn.529i.com/'
req = s.post(url=url,data=date)
print req.text


采集舔狗日志到handsome时光机

全自动采集舔狗日志到handsome时光机

#!/usr/bin/python
# -*- coding: utf-8 -*-

import requests
import hashlib
url = "https://v1.alapi.cn/api/dog"   #舔狗api
payload = "format=text"
headers = {'Content-Type': "application/x-www-form-urlencoded"}
response = requests.request("POST", url, data=payload, headers=headers)
dog=response.text


key = '121111' #时光机验证编码
s = requests.Session()
def getmd5(s):
    return hashlib.md5(s.encode('utf-8')).hexdigest()

date = {
    "action": "send_talk",
    "time_code": getmd5(str(key)),
    "cid": "146",  #时光机cid
    "token":"crx", #识别浏览器还是微信改成其他的不显示
    "content": dog, #发送文字
    "msg_type": "text",
    "mediaId": "1"
}
url = 'https://cdn.529i.com/'
req = s.post(url=url,data=date)
print(req.text)

链接:https://www.529i.com/archives/761.html

0
« 上一篇 04-21
jQuery 侧边栏固定 theia-sticky-sidebar.js
下一篇 » 05-16

评论 (0)