美文网首页
python 股票——Tushare

python 股票——Tushare

作者: 刘年 | 来源:发表于2020-03-23 16:23 被阅读0次

    1、安装tushare

    pip install tushare
    pip install pandas

    2、获得股票信息

    import tushare
    import pandas
    import datetime
    
    get_message =tushare.get_stock_basics()
    tickers =get_message.index.tolist()
    # 获得今日所有股票信息
    datetoday = datetime.datetime.today().strftime('%Y%M%D')
    get_message.to_csv('ss.csv')
    

    相关文章

      网友评论

          本文标题:python 股票——Tushare

          本文链接:https://www.haomeiwen.com/subject/muhvyhtx.html