先抓取一个页面的内容,以后再慢慢完善。
#东方财富A股核心题材爬虫系统0.1 #python版本:2.7 # import urllib2 import urllib import re #建立爬虫的类HeXin_Spider class HeXin_Spider: def __init__(self): pass #Scode是股票代码,在考虑是不是用元组传入 def GetPage(self,Scode): MyUrl = "http://f10.eastmoney.com/f10_v2/CoreConception.aspx?code="+Scode MyReq = urllib2.Request(MyUrl) MyResponse = urllib2.urlopen(MyReq) Mypage = MyResponse.read() unicodePage = Mypage.decode("utf-8") MyItems = re.findall(‘<div class="summary">(.*?)</div>‘,unicodePage) #返回抓取到的核心题材的内容。 return MyItems[0]
时间: 2024-11-08 13:00:50