大阪府における新型コロナウイルス感染症患者の発生状況のExcelファイルからデータラングリング

import requests from bs4 import BeautifulSoup import re headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko", } def get_link(): url = "http://www.pref.osaka.lg.jp/iryo/osakakansensho/corona.html" r = requests.get(url, headers=headers) r.raise_for_status(…