搭建自己的金融数据源和量化分析平台(六):下载并存储沪深两市上市公司财报

基于不依赖wind、某花顺等第三方平台数据的考虑,尝试直接从财报中解析三大报表进而计算ROE等财务指标,因此需要下载沪深两市的上市公司财报数据,便于后续从pdf中解析三大报表。

深市爬虫好做,先放深市爬虫:

注:同一个IP频繁向两市服务器发起请求会导致HTTPSConnectionPool(host='xxxx', port=443): Max retries exceeded with url:报错

解决方法有两个:一是使用代理池,二是爬虫休眠。

python 复制代码
'''
根据时间段下载深交所上市公司财报
path str 指定财报存储路径
time str 财报年度 如[2023,2024]
stock_list list 下载财报的股票代码列表 例如['000001','000002']
financial_statements_type list 财报的类别 例如['annual','semi-annual','quarterly_1','quarterly_3'] 分别为年报、半年报、一季报、三季报
'''
def get_financial_statements(path, time, stock_list, financial_statements_type):
    url = "https://www.szse.cn/api/disc/announcement/annList"
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3',
        'Content-Type': 'application/json',
        'Connection': 'close'
    }
    download_url = "https://disc.static.szse.cn/download"
    # 逐只股票读取相应pdf报表
    for stock in stock_list:
        # 逐年循环
        for year in time:
            # 根据财报类型逐个读取pdf
            for fs_type in financial_statements_type:
                if fs_type == 'annual':
                    title = "年报"
                    bigCategoryId = '010301'   # 年报查询代码
                    timestart = str(year)+"-12-31"
                    timeend = str(year+1)+"-09-01"  # 防止出现财报更正之后时间节点覆盖不到,统一往后推三个月
                elif fs_type == 'semi-annual':
                    title = "中报"
                    bigCategoryId = '010303'   # 中报查询代码
                    timestart = str(year) + "-07-01"
                    timeend = str(year) + "-12-31"
                elif fs_type == 'quarterly_1':
                    title = "一季报"
                    bigCategoryId = '010305'   # 一季报查询代码
                    timestart = str(year) + "-04-01"
                    timeend = str(year) + "-07-31"
                else:
                    title = "三季报"
                    bigCategoryId = '010307'   # 三季报查询代码
                    timestart = str(year) + "-10-01"
                    timeend = str(year) + "-12-31"
                data = {
                    "seDate": [timestart, timeend],
                    "stock": [stock],
                    "channelCode": ["listedNotice_disc"],
                    "bigCategoryId": [bigCategoryId],
                    "pageSize": 50,
                    "pageNum": 1
                }
                response = requests.post(url=url, data=json.dumps(data), headers=headers)
                data = json.loads(response.text)["data"]
                if len(data) == 0 or data is None:
                    print("警告:股票代码:"+stock+" "+str(year)+title+"不存在!")
                else:
                    for entry in data:
                        # 对摘要栏目做特殊处理
                        if entry['title'].find("报告摘要") < 0:
                            # 检查path路径下stock代码文件夹、年份文件夹是否存在,不存在则创建
                            file_path = path+stock+"/"+str(year)
                            if Tools.check_folder_exists(path+stock) == False:
                                os.mkdir(path+stock)
                            if Tools.check_folder_exists(file_path) == False:
                                os.mkdir(file_path)
                            file = file_path + "/" + str(year) + title + "##" + entry['title'].replace("*", "") + ".pdf"
                            # 检查文件是否已存在,不存在再下载
                            if os.path.exists(file):
                                print("警告:股票代码:" + stock + " " + str(year) + title + "已存在!")
                            else:
                                filecontent = requests.get(download_url + entry["attachPath"])
                                with open(file, "wb") as pdf:
                                    pdf.write(filecontent.content)
                                print("股票代码:" + stock + " " + str(year) + title + "写入成功。")

# 爬虫调用实例:
# timestart = [2023,2024]
# stock_list = ['000001','000002']
# financial_statements_type = ['annual', 'semi-annual', 'quarterly_1', 'quarterly_3']
# SZ_financial_statement_path = "F:/data/SZ/"
# get_financial_statements(SZ_financial_statement_path, timestart,stock_list,financial_statements_type)

沪市爬虫:

python 复制代码
'''
根据时间段下载上交所上市公司财报
time str 财报年度 如2024、2023
stock_list list 下载财报的股票代码列表 例如['000001','000002']
financial_statements_type list 财报的类别 例如['annual','semi-annual','quarterly_1','quarterly_3'] 分别为年报、半年报、一季报、三季报
'''
def get_financial_statements(path, time, stock_list, financial_statements_type):
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3',
        'Referer': 'https://www.sse.com.cn/',
        'Connection': 'close'
    }
    download_url = "https://www.sse.com.cn"
    # 逐只股票读取相应pdf报表
    for stock in stock_list:
        # 逐年循环
        for year in time:
            # 根据财报类型逐个读取pdf
            for fs_type in financial_statements_type:
                if fs_type == 'annual':
                    title = "年报"
                    bigCategoryId = 'YEARLY'  # 年报查询代码
                    timestart = str(year) + "-12-31"
                    timeend = str(year + 1) + "-09-01"  # 防止出现财报更正之后时间节点覆盖不到,统一往后推三个月
                elif fs_type == 'semi-annual':
                    title = "中报"
                    bigCategoryId = 'QUATER2'  # 中报查询代码
                    timestart = str(year) + "-07-01"
                    timeend = str(year) + "-12-31"
                elif fs_type == 'quarterly_1':
                    title = "一季报"
                    bigCategoryId = 'QUATER1'  # 一季报查询代码
                    timestart = str(year) + "-04-01"
                    timeend = str(year) + "-07-31"
                else:
                    title = "三季报"
                    bigCategoryId = 'QUATER3'  # 三季报查询代码
                    timestart = str(year) + "-10-01"
                    timeend = str(year) + "-12-31"
                url = "https://query.sse.com.cn/security/stock/queryCompanyBulletin.do?jsonCallBack=jsonpCallback"+str(random.randint(10000, 999999))+"&isPagination=true&pageHelp.pageSize=50&pageHelp.pageNo=1&pageHelp.beginPage=1&pageHelp.cacheSize=1&pageHelp.endPage=1&productId="+stock+"&securityType=0101%2C120100%2C020100%2C020200%2C120200&reportType2=DQBG&reportType="+bigCategoryId+"&beginDate="+timestart+"&endDate="+timeend
                response = requests.get(url=url, headers=headers)
                datas = json.loads(response.text.split('"keyWord":null,"pageHelp":')[1].split(',"productId":')[0])['data']
                if len(datas) == 0 or datas is None:
                    print("警告:股票代码:" + stock + " " + str(year) + title + "不存在!")
                else:
                    for entry in datas:
                        # 对摘要栏目做特殊处理,去除摘要
                        if entry['TITLE'].find("摘要") < 0:
                            # 检查path路径下stock代码文件夹、年份文件夹是否存在,不存在则创建
                            file_path = path + stock + "/" + str(year)
                            if Tools.check_folder_exists(path + stock) == False:
                                os.mkdir(path + stock)
                            if Tools.check_folder_exists(file_path) == False:
                                os.mkdir(file_path)
                            file = file_path + "/" + str(year) + title + "##" + entry['TITLE'].replace("*", "") + ".pdf"
                            # 检查文件是否已存在,不存在再下载
                            if os.path.exists(file):
                                print("警告:股票代码:" + stock + " " + str(year) + title + "已存在!")
                            else:
                                filecontent = requests.get(download_url + entry["URL"])
                                with open(file, "wb") as pdf:
                                    pdf.write(filecontent.content)
                                print("股票代码:" + stock + " " + str(year) + title + "写入成功。")
# timestart = [2023]
# stock_list = ['600011']
# financial_statements_type = ['annual', 'semi-annual', 'quarterly_1', 'quarterly_3']
# SZ_financial_statement_path = "F:/data/SH/"
# get_financial_statements(SZ_financial_statement_path, timestart,stock_list,financial_statements_type)

控制模块代码:

python 复制代码
#更新A股股票财报数据
def update_A_financial_data(SZ=False,SH=False,BJ=False,time=[],financial_statements_type=[]):
    database = "stock_a"
    if SZ == True:
        # 读取深交所上市处于上市状态的公司股票代码
        select_sql = "select stock_code from stock_list where exchange = '"+SZSE+"' and list_status = '"+LIST+"'"
        select_result = ExecSelect(database, select_sql)  # 读取查询结果
        stocks = []
        for stock in select_result:
            stocks.append(stock[0])
        A_SZ_basic.get_financial_statements(SZ_financial_statement_path, time, stocks, financial_statements_type)
    if SH == True:
        # 读取上交所上市处于上市状态的公司股票代码
        select_sql = "select stock_code from stock_list where exchange = '" + SSE + "' and list_status = '" + LIST + "'"
        select_result = ExecSelect(database, select_sql)  # 读取查询结果
        stocks = []
        for stock in select_result:
            stocks.append(stock[0])
        A_SH_basic.get_financial_statements(SH_financial_statement_path, time, stocks, financial_statements_type)
    if BJ == True:
        pass
相关推荐
多年小白10 小时前
开盘策略】2026年5月28日(周四)
大数据·人工智能·物联网·金融·区块链
乐兮创想 小林11 小时前
金融投资官网的工程化设计:投资者关系信息架构、合规内容管理与系统对接
金融·架构·网站建设·企业官网·北京网站建设公司
脑极体14 小时前
“去峰顶看金融智能体的朝阳”,与华为开辟的登山之路
华为·金融
无心水18 小时前
金融系统数据一致性之战:联机交易与批量作业的冲突处理完全指南
人工智能·金融·wpf·批量作业·顶尖架构师·联机交易·金融架构师
松果财经19 小时前
从“单点收付”到“跨国司库”,金融为何是出海深水区的关键变量?
人工智能·microsoft·金融
实在智能RPA1 天前
实在Agent针对金融行业Agent灾备与高可用是如何进行设计的?深度拆解金融级智能体的架构安全与连续性保障
人工智能·安全·ai·金融·架构
ZDTina2 天前
浅析金融领域 TRS:总收益互换
金融·区块链
JasonSJX2 天前
海海软件 DRM-X 4.0 为 Manuela Negro 交易学院金融课程筑牢版权防线
金融
期权汇小韩2 天前
投降输一半!强弱分化加剧!
金融
AIFQuant3 天前
量化交易系统:历史行情 API 批量拉取与回测数据清洗
开发语言·python·金融·restful·量化交易