3.36K 浏览
0

最近经常发现测试服务器连接不上。
我想测试时:第一次从服务器取数据,并保存到本地(数据库or文本,或类似建立一个127.0.0.1的server);
第二次之后的所有测试从本地取数据,既加快了速度,又减少服务器负担,不能联网时也能离线测试。
能否给个代码例子?

Traceback (most recent call last):
File “D:\Python37\lib\site-packages\urllib3\connectionpool.py”, line 603, in urlopen
chunked=chunked)

urllib3.exceptions.ProtocolError: (‘Connection aborted.’, OSError(0, ‘Error’))

During handling of the above exception, another exception occurred:

File “D:\Python37\lib\site-packages\tqsdk\api.py”, line 240, in __init__
self._setup_connection() # 初始化通讯连接

requests.exceptions.ConnectionError: (‘Connection aborted.’, OSError(0, ‘Error’))
Task was destroyed but it is pending!

west 已回答的问题 2020年4月16日
0

盘后有时候行情服务器在运维时是连不上的。

tqsdk使用diff协议和服务器交互https://doc.shinnytech.com/diff/latest/index.html

没有示例代码。

west 已回答的问题 2020年4月16日