本文整理汇总了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(' ', '').replace(';', '')