当前位置: 首页>>代码示例>>Python>>正文


Python Util.getCode方法代码示例

本文整理汇总了Python中util.Util.getCode方法的典型用法代码示例。如果您正苦于以下问题:Python Util.getCode方法的具体用法?Python Util.getCode怎么用?Python Util.getCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在util.Util的用法示例。


在下文中一共展示了Util.getCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: download

# 需要导入模块: from util import Util [as 别名]
# 或者: from util.Util import getCode [as 别名]
    def download(self):
        """
        >>> app=MultiThreadDownloader(conf)
        >>> app.stock.allCode

        >>> app.download()
        True
        """
        logging.debug("Start downloading data...\nCrawl mode is mutil.")
        conf = {}
        conf.update(self.conf)
        conf['handle']=self.handle
        conf['date'] = self.date
        oQueue = queue.Queue()
        for code in self.allCode:
            if type(code) == int:
                code = Util.getCode(code)
            oQueue.put(code)
        for i in range(self.threadNum):
            conf["queue"]=oQueue
            multiThreadCrawlHandler = MultiThreadHandler(conf = conf)
            multiThreadCrawlHandler.setDaemon(True)
            multiThreadCrawlHandler.start()
        oQueue.join()               
        return True
开发者ID:gzdx-chenghui,项目名称:Stock-Analysis,代码行数:27,代码来源:MultiThreadDownloader.py

示例2: getUrl

# 需要导入模块: from util import Util [as 别名]
# 或者: from util.Util import getCode [as 别名]
def getUrl(num,date,sourceType="qq2",conf={}):
    """
    >>> getUrl(num="601919",date="20110817",conf = conf)
    'http://stock.gtimg.cn/data/index.php?appn=detail&action=download&c=sh601919&d=20110817'
    """
    num=int(num)
    date=str(date)
    detailSource=conf.get("DETAIL_SOURCE",DETAIL_SOURCE)
    if sourceType=="qq":
        strNum=Util.getCode(num)
        if(num<600000):
            pre="sz"
        else:
            pre="sh"
        fileName=pre+strNum+".js"
        return detailSource.get("qq") % fileName
    elif sourceType=="sina":
        strNum=Util.getCode(num)
        if(num<600000):
            pre="sz"
        else:
            pre="sh"
        symbol=pre+strNum
        formatDate=time.strftime("%Y-%m-%d",time.strptime(date,"%Y%m%d"))
        url=detailSource.get("sina") % (formatDate,symbol)
        return url
    elif sourceType=="qq2":
        strNum=Util.getCode(num)
        if(num<600000):
            pre="sz"
        else:
            pre="sh"
        symbol=pre+strNum
        formatDate=time.strftime("%Y%m%d",time.strptime(date,"%Y%m%d"))
        url=detailSource.get("qq2") %(symbol, formatDate)
        return url
开发者ID:gzdx-chenghui,项目名称:Stock-Analysis,代码行数:38,代码来源:Detail.py

示例3: download

# 需要导入模块: from util import Util [as 别名]
# 或者: from util.Util import getCode [as 别名]
    def download(self,date=None):
        """
        >> detail=Detail(conf)
        >> detail.stock.allCode

        >> detail.download()
        True
        """
        date = date or self.date
        logging.debug("Start downloading Detail data...\nCrawl mode is %s." % self.threadMode)
        if self.conf.get("restart"): #中断后重新开始传数据的restart模式
            lastCode=Util.getLastCode(
                path = os.path.join(self.conf.get("SYS_HOME"),
                self.conf.get("DETAIL_DATA_PATH"),date)
            ) #得到中断前最后一个抓取成功的股票代码
            codes = map(lambda code:int(code) >int (lastCode),self.stock.allCode) #得到剩余的需要抓取的代码
            logging.info("Downloader is in restart mode.Restart begin at " + str(codes[0]))
            self.conf['restart'] = False
        else:
            codes = self.stock.allCode

        if self.threadMode == "multi":  #多线程模式
            oQueue = queue.Queue()
            for code in codes:
                if type(code) == int:
                    code = Util.getCode(code)
                oQueue.put(code)
            for i in range(self.threadNum):
                self.conf["queue"]=oQueue
                oMultiThreadCrawlDetail = MultiThreadDetail(date=date,parser=self.parser,conf=self.conf)
                oMultiThreadCrawlDetail.setDaemon(True)
                oMultiThreadCrawlDetail.start()
            oQueue.join()               
        else: #单线程模式
            for code in codes:
                handleDetail(code = code,date = date,parser = self.parser,conf = self.conf)
        return True
开发者ID:gzdx-chenghui,项目名称:Stock-Analysis,代码行数:39,代码来源:Detail.py


注:本文中的util.Util.getCode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。