1 Star 0 Fork 11

iniwf/tdxapi2

forked from 老张/tdxapi2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
read.py 988 Bytes
一键复制 编辑 原始数据 按行查看 历史
若水 提交于 2020-03-29 22:35 . Initial commit
#read txt method two
#coding: utf-8
name=''
for line2 in open("./json.txt",mode='r',encoding = "utf-8"):
#print(line2)
line2=line2.strip()
if line2=='':
continue
nameindex=line2.find('//')
if nameindex>-1:
name=line2.replace('//','')
loadindex=line2.find('lpFuncLogonEx')
if loadindex>-1:
loadindex =loadindex+14
line2=line2[loadindex:]
line2=line2[:-2]
# print(line2)
line2arr=line2.split(',')
#print(line2arr)
#"55.XY", "61.132.54.83", 7718, "7.04", 1, 9, "1", "1", "1", "1", szErrInfo
print(line2arr[0]+":{")
print('"ip":'+line2arr[1]+',')
print('"port":' + line2arr[2] + ',')
print('"name":"' +name + '"')
print('},')
# "55.XY": {
# "ip": "61.132.54.83",
# "port": 7718,
# "name": "华泰证券"
# },
sss=''
for index in range(30):
sss+='%s,'
print(sss)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iniwf/tdxapi2.git
git@gitee.com:iniwf/tdxapi2.git
iniwf
tdxapi2
tdxapi2
master

搜索帮助