📅  最后修改于: 2022-03-11 14:59:30.846000             🧑  作者: Mango
import requests
url = 'http://vineoftheday.com/?order_by=rating'
response = requests.get(url)
html = response.content
soup = BeautifulSoup(html, "html.parser")