python爬虫获取基金数据<2>

用sklearn分析基金数据<1>
python爬虫获取基金数据<2>
数据预处理:数据清洗、生成样本数据<3>
用sklearn训练样本数据<4>
用模型进行预测及改进<5>


    前面已经说了大致思路,需要用上个月所有基金的表现情况来预测这个月所有基金的表现情况,数据的获取显然是第一步,像基金这种开放的数据通过python爬虫来得到自然是容易的。
    在我的上一篇文章中也用到过python获取数据只是没用bs4这类库,光用re比较费神,有时出不来有时出来不需要的内容,
这次用了bs4和webdriver明显方便多了。
本次基金数据的来源为天天基金网,其中抓取某只基金历史净值数据参考了:
https://blog.csdn.net/github_26672553/article/details/78662563
其中目标URL为http://fund.eastmoney.com/f10/jjjz_519961.html
很明显URL中的519961是基金代码,那只要有所有的基金代码就可以获得所有基金历史数据了,
所以首先要得到所有基金代码数据,目标URL为http://fund.eastmoney.com/allfund.html同样是天天基金网

代码如下:

from selenium import webdriver
from selenium.webdriver.common.by import By

driver = webdriver.PhantomJS(executable_path=r"C:\Program Files\phantomjs-2.1.1-windows\bin\phantomjs.exe")
driver.get("http://fund.eastmoney.com/allfund.html") # 要抓取的网页地址
tables = driver.find_element_by_id("code_content")
rownum = 1
for row in tables.find_elements_by_xpath(".//li"): 
    col = row.find_elements(By.TAG_NAME, "a")
    try:
        colum0 = col[0].text
        colum0 = colum0.replace("(","")
        colum0 = colum0.replace(")",",")       
        with open('JJCD.txt','ab') as files: 
             JJCD = str(rownum) +','+colum0+ '\r\n' 
             JJCD = JJCD.encode('utf-8') 
             files.write(JJCD)
             rownum += 1
    except: 
        pass 

得到的数据如下共7294个:

7284,740101,长安沪深300非周期
7285,740601,长安货币A
7286,740602,长安货币B
7287,750001,安信灵活配置混合
7288,750002,安信目标收益债券A
7289,750003,安信目标收益债券C
7290,750005,安信平稳增长混合发起A
7291,750006,安信现金管理货币A
7292,750007,安信现金管理货币B
7293,762001,国金国鑫发起
7294,770001,德邦优化混合
有了所有的基金代码就可再进行循环得到基金历史净值数据了

代码如下:

from selenium.webdriver.support.ui import WebDriverWait
from selenium import webdriver
from threading import Thread,Lock
import os
import time
from selenium.webdriver.common.by import By
import pandas as pd
# 下面是利用 selenium 抓取html页面的代码
# 初始化函数
def initSpider(fund_url,driver):   
    driver.get(fund_url) # 要抓取的网页地址
    # 找到"下一页"按钮,就可以得到它前面的一个label,就是总页数
    getPage_text = driver.find_element_by_id("pagebar").find_element_by_xpath(
        "div[@class='pagebtns']/label[text()='下一页']/preceding-sibling::label[1]").get_attribute("innerHTML")
    # 得到总共有多少页
    total_page = int("".join(filter(str.isdigit, getPage_text)))
    # 返回
    return total_page
# 获取html内容
def getData(myrange,driver,lock,code):   
    for x in myrange:
        # 锁住
        lock.acquire()       
        jjcode = code
        tonum = driver.find_element_by_id("pagebar").find_element_by_xpath(
            "div[@class='pagebtns']/input[@class='pnum']")  # 得到 页码文本框
        jumpbtn = driver.find_element_by_id("pagebar").find_element_by_xpath(
            "div[@class='pagebtns']/input[@class='pgo']")  # 跳转到按钮
        tonum.clear()  # 第x页 输入框
        tonum.send_keys(str(x))  # 去第x页
        jumpbtn.click()  # 点击按钮
        time.sleep(1)
        # 抓取
        WebDriverWait(driver, 20).until(lambda driver: driver.find_element_by_id("pagebar").find_element_by_xpath("div[@class='pagebtns']/label[@value={0} and @class='cur']".format(x)) != None)
        table = driver.find_element_by_xpath("//table[@class='w782 comm lsjz']/tbody")                 
        for row in table.find_elements_by_xpath(".//tr"): 
            col = row.find_elements(By.TAG_NAME, "td") 
            colum0 = col[0].text    #日期       
            colum1 = col[1].text    #当前价格
            colum1 = colum1.replace("*","")
            colum2 = col[2].text   #总价格
            if colum2=='' :
               colum2 = colum1
            colum3 = col[3].text   #比率
            colum3 = colum3.replace("%","")          
            print(colum0)
            with open('allitems.txt','ab') as files: 
                 items = jjcode +','+colum0 +','+ colum1 +','+ colum2 + ','+ colum3+ '\r\n' 
                 items = items.encode('utf-8') 
                 files.write(items) 
        # 解锁
        lock.release()
# 开始抓取函数
def beginSpider():   
    file_path=os.path.join(os.getcwd(),'JJCD.txt')
    fund_code =pd.read_table(filepath_or_buffer=file_path,sep=',')
    Codes=fund_code.trade_code
    driver = webdriver.PhantomJS(executable_path=r"C:\Program Files\phantomjs-2.1.1-windows\bin\phantomjs.exe")
    for Code in Codes: 
        Code = str(Code).zfill(6) 
        print (Code)
        fund_url='http://fund.eastmoney.com/f10/jjjz_'+Code +'.html'
        # 初始化爬虫
        total_page = initSpider(fund_url,driver)
        # 创建锁
        lock = Lock()
        if total_page >20:
           total_page = 20
        r = range(1, int(total_page)+1)      
        step = 10
        range_list = [r[x:x + step] for x in  range(0, len(r), step)]   #把页码分段
        thread_list = []
        for r in  range_list:
            t = Thread(target=getData, args=(r,driver,lock,Code))
            thread_list.append(t)
            t.start()
        for t in thread_list:
            t.join() # 这一步是需要的,等待线程全部执行完成   
        print('抓取完成 %s'%Code)
# #################上面代码就完成了 抓取远程网站html内容并保存到项目中的 过程   
beginSpider()

可以通过total_page来控制数据的日期范围,得到的数据如下:

trade_code,trade_date,cur_price,tol_price,day_int
000001,2018-03-06,1.1280,3.5390,0.98
000001,2018-03-05,1.1170,3.5280,-0.36
000001,2018-03-02,1.1210,3.5320,-0.88
000001,2018-03-01,1.1310,3.5420,0.89
000001,2018-02-28,1.1210,3.5320,-0.53
000001,2018-02-27,1.1270,3.5380,-0.88
000001,2018-02-26,1.1370,3.5480,1.25
000001,2018-02-23,1.1230,3.5340,0.09
000001,2018-02-22,1.1220,3.5330,2.56
000001,2018-02-14,1.0940,3.5050,0.64
000001,2018-02-13,1.0870,3.4980,0.74
000001,2018-02-12,1.0790,3.4900,3.15
000001,2018-02-09,1.0460,3.4570,-2.79
000001,2018-02-08,1.0760,3.4870,0.94
000001,2018-02-07,1.0660,3.4770,-2.83

到此就已经获得了所有基金的历史净值数据了,但是还需要基金的基本信息,后续会用到,比如基金的类型,是股票型还是债券型。基金的基金信息在天天基金上也有:

同样通过python爬虫得到:

from selenium import webdriver
import os
import time
from selenium.webdriver.common.by import By
import pandas as pd

def beginSpider():   
    driver = webdriver.PhantomJS(executable_path=r"C:\Program Files\phantomjs-2.1.1-windows\bin\phantomjs.exe")
    file_path=os.path.join(os.getcwd(),'fund_rest.txt')
    fund_code =pd.read_table(filepath_or_buffer=file_path,sep=',')
    Codes=fund_code.trade_code   
    rownum = 1 
    for Code in Codes: 
        Code = str(Code).zfill(6) 
        print (Code)
        fund_url='http://fund.eastmoney.com/f10/jjjz_'+Code +'.html'
        driver.get(fund_url) # 要抓取的网页地址
        try:           
            tables = driver.find_element_by_class_name("bs_gl")
            for row in tables.find_elements_by_xpath("p"):         
                col = row.find_elements(By.TAG_NAME, "label")        
                try:        
                    colum0 = col[0].text         
                    colum1 = col[1].text
                    colum2 = col[2].text
                    colum3 = col[3].text
                    colum4 = col[4].text
                    colum0 = colum0.replace("成立日期:","")
                    colum1 = colum1.replace("基金经理:  ","")
                    colum2 = colum2.replace("类型:","")
                    colum3 = colum3.replace("管理人:","")
                    colum4 = colum4.replace("资产规模: ","")
                    colum4 = colum4.replace(",","")     
                    with open('Leixingall.txt','ab') as files: 
                        JJCD = str(rownum) +','+Code+','+colum0+','+colum1+','+colum2+','+colum3+','+colum4+ '\r\n'                        
                        JJCD = JJCD.encode('utf-8') 
                        files.write(JJCD)
                        rownum += 1
                except: 
                    pass     
        except: 
            pass
        time.sleep(0.1)
beginSpider()

数据如下:

seq,fund_code,esta_dt,fund_manager,fund_type,fund_admin,fund_scale
1,000001,2001-12-18,董阳阳,混合型,华夏基金,47.68亿元 (截止至:03-31)
2,000003,2013-03-20,江小震,债券型,中海基金,0.29亿元 (截止至:03-31)
3,000004,2013-03-20,江小震,债券型,中海基金,0.19亿元 (截止至:03-31)
4,000005,2013-03-08,刘宁,定开债券,嘉实基金,1.37亿元 (截止至:06-22)
5,000007,2013-03-08,刘涛,债券型,鹏华基金,0.40亿元 (截止至:03-31)
6,000008,2013-03-22,何如  陈正宪,联接基金,嘉实基金,8.22亿元 (截止至:03-31)
7,000009,2013-03-04,石大怿  刘朝阳,货币型,易方达基金,422.44亿元 (截止至:03-31)
8,000010,2013-03-04,石大怿  刘朝阳,货币型,易方达基金,256.30亿元 (截止至:03-31)
9,000011,2004-08-11,陈伟彦,混合型,华夏基金,36.06亿元 (截止至:03-31)
10,000013,2013-03-04,石大怿  刘朝阳,货币型,易方达基金,28.11亿元 (截止至:03-31)
11,000014,2013-03-19,何家琪,债券型,华夏基金,1.29亿元 (截止至:03-31)
12,000015,2013-03-08,柳万军,债券型,华夏基金,13.54亿元 (截止至:03-31)
13,000016,2013-03-08,柳万军,债券型,华夏基金,4.36亿元 (截止至:03-31)

  • 1
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值