from bs4 import BeautifulSoup response = requests.get(url) soup = BeautifulSoup(response.text, 'lxml') html = soup.find(id='some_id')
確定! 回上一頁