赞
踩
1、获取新浪财经实时股票数据
- # =============================================================================
- # 9.1 新浪股票实时数据挖掘实战 by 王宇韬
- # =============================================================================
-
- from selenium import webdriver
- import re
- chrome_options = webdriver.ChromeOptions()
- chrome_options.add_argument('--headless')
- browser = webdriver.Chrome(chrome_options=chrome_options)
- browser.get('http://finance.sina.com.cn/realstock/company/sh000001/nc.shtml')
- data = browser.page_source
- # print(data)
- browser.quit()
- #提取股价的正则表达式
- p_price = '<div id="price" class=".*?">(.*?)</div>'
- price = re.findall(p_price, data)
- print(price)
2、东方财富网数据挖掘实战
# =======&
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。