• 大小: 5.98KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


python获取万得行情数据

资源截图

代码片段和文件信息

#-*- coding: UTF-8 -*- 

#python使用用Wind接口获取全部A股历史交易数据 批量写入mysql库
#python getallAHisTrade2DB.py -o E:\wuyou\python\wind\
#wing ide debug input:-o E:\wuyou\python\wind\
# open wind api spend lots of time

“““
@Author: chenchuang
@Date: 2017-07-25
@Version: V1.0
“““


#!/user/python
# -*- coding: gb2312 -*-
import os
import sys
import getopt
from WindPy import *
from datetime import *
import pymysql
import time


class LoadHisInfo:
    def __init__(self):
        self.OutputDir=r‘E:‘
        self.StockCodeList=[]
        self.getdate = time.strftime(“%Y-%m-%d“ time.localtime())
        print(self.getdate)         

    def StartWind(self):
        w.start()

    def LoadStockList(self):
        #get datewind_codesec_name
        res = w.wset(“sectorconstituent““date=“+str(self.getdate)+“;sectorid=a001010100000000“)
        #print(res)

        if res.ErrorCode != 0:
            print(‘Error[‘+str(res.ErrorCode)+‘][load stockcode list fail]\n‘

评论

共有 条评论