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


Python Crawler.getPage2方法代码示例

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


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

示例1: __init__

# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import getPage2 [as 别名]
# -*- coding: utf8 -*-
from Crawler import Crawler
from BeautifulSoup import BeautifulSoup


class CompanyFinancial:
    def __init__(self):
        self.url = 'http://www.538538.com/Stock_Code_Total---%s---548.html?StockCode=600446&stock_name=&f10=007'
        self.fenhong = 'http://m.538538.com/mstock_Code_Total---600000---548.html?StockCode=%s&stock_name=&f10=010'

if __name__ == "__main__":
    cf = CompanyFinancial()
    url = cf.url % ('000750')
    print url
    page = Crawler.getPage2(url)
    soup = BeautifulSoup(page)
    res = soup.findAll('div', attrs={'id': 'maincontent'})
    for i in res[0].text.split(u'│'):
        tmp = i.encode("utf8")
        print tmp.replace('&nbsp', '').replace(';', '')
开发者ID:365p1,项目名称:stock,代码行数:22,代码来源:CompanyFinancial.py


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