python 爬虫 网站的历史数据的爬取案例 API请求历史数据


#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2020/11/18 13:02
# @Author  : huni
# @File    : 疫情数据分析.py
# @Software: PyCharm

import requests
import sqlite3


def getData(url):
    headers = {
   
     
        'Referer': 'https://news.qq.com/zt2020/page/feiyan.htm'

你可能感兴趣的:(爬虫,数据库,python,sqlite,数据分析,json)