前提・実現したいこと
pythonのスクレイピングを用いてサイトからURLを取得したい
https://www.iajapan.org/hotline/list/list5.html
こちらを参考に取得したいと考えています。
発生している問題・エラーメッセージ
pyhon自体が動いても出力がされない
該当のソースコード
python
1import csv 2from urllib.request import urlopen 3from bs4 import BeautifulSoup 4import ssl 5ssl._create_default_https_context = ssl._create_unverified_context 6 7# URLの指定 8html = urlopen("https://www.iajapan.org/hotline/list/list5.html") 9bsObj = BeautifulSoup(html, "html.parser") 10 11# テーブルを指定 12table = bsObj.findAll("table", {"class":"main"})[0] 13rows = table.findAll("tr") 14 15with open("SRC.csv", "w", encoding='utf-8') as file: 16 writer = csv.writer(file) 17 for row in rows: 18 csvRow = [] 19 for cell in row.findAll(['td', 'th']): 20 csvRow.append(cell.get_text()) 21 writer.writerow(csvRow)
試したこと
Beautifulsoupなどでスクレイピングを行ってみたり、tableに対して実行を行った
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。