Web サイトをスクレイピングしようとしていますが、一度に複数の URL を挿入できるようにコードを完成させることができませんでした。現在、コードは一度に 1 つの URL で機能します。
現在のコードは次のとおりです。
import requests
from bs4 import BeautifulSoup
import lxml
import pandas as pd
from urllib.request import urlopen
from urllib.error import HTTPError
from urllib.error import URLError
from bs4 import BeautifulSoup
try:
html = urlopen("http://google.com")
except HTTPError as e:
print(e)
except URLError:
print("error")
else:
res = BeautifulSoup(html.read(),"html5lib")
tags = res.findAll("div", {"itemtype": "http://schema.org/LocalBusiness"})
title = res.title.text
print(title)
for tag in tags:
print(tag)
このようなものを挿入できるように、誰かが変更を手伝ってくれませんか?
html = urlopen ("url1, url2, url3")