加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ReadEBK.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
sqltxt 提交于 2017-11-17 18:54 . 加try及时间触发处理
import time
import queue
import requests
import json
def wx_msg(corp_id, secret,agentid,msg):
try:
values = {'corpid' :corp_id,
'corpsecret':secret
}
req = requests.post('https://qyapi.weixin.qq.com/cgi-bin/gettoken',params=values)
token = json.loads(req.text)["access_token"]
#try:
dict_arr = {"touser": "@all",
"toparty": "@all",
"msgtype": "text",
"agentid": agentid,
"text": {"content": msg},
"safe": "0"}
data = json.dumps(dict_arr,ensure_ascii=False,indent=2,sort_keys=True).encode('utf-8')
reqs = requests.post("https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token="+token,data)
except Exception as e:
with open('微信发送失败:'+str(int(time.strftime("%H%M%S")))+'.log') as f:
f.write(e)
def Send_wx():
with open('每日选股'+str(int(time.strftime("%Y%m%d")))+'.EBK') as f:
d=f.read()
wx_msg('wx87780fb826353ecc','XlOvsTpuNaINPsV2Wm6TMRLt_k1lgxZjJwrSaVND0Lo',1000003,d)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化