摘要: import urllib.request import re stock_CodeUrl = 'http://quote.eastmoney.com/stocklist.html' #获取股票代码列表 def urlTolist(url): allCodeList = [] html = urllib.request.urlopen(url).read() html... 阅读全文
posted @ 2016-12-25 13:41 疯陈演义 阅读(4524) 评论(7) 推荐(0) 编辑