1 Star 0 Fork 12

rizheng213/stock_robot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
wx_test.py 918 Bytes
一键复制 编辑 原始数据 按行查看 历史
邹吉华 提交于 2023-04-12 16:27 . 1.6
import requests
import threading
import time
import random
data = '<xml>\
<ToUserName><![CDATA[123]]></ToUserName>\
<FromUserName><![CDATA[456]]></FromUserName>\
<CreateTime>1460541339</CreateTime>\
<MsgType><![CDATA[text]]></MsgType>\
<Content><![CDATA[{0}]]></Content>\
<MsgId><![CDATA[123456789]]></MsgId>\
</xml>'
headers = {'Content-Type':'application/json'}
def thread_Timer():
i=0
begin = time.time()
current = time.time()
while current-begin<1 :
code = random.randint(600000,609999)
req_data = data.format(code)
res = requests.post(url="http://39.103.170.176/stock/forecast", data=req_data, headers=headers)
#print(res.content)
i+=1
current = time.time()
print("QPS:"+str(i))
timer = threading.Timer(1, thread_Timer)
timer.start()
for i in range(30):
timer = threading.Timer(1, thread_Timer)
timer.start()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/rizheng213/stock_robot.git
git@gitee.com:rizheng213/stock_robot.git
rizheng213
stock_robot
stock_robot
master

搜索帮助