res = requests.get(url, verify=False, headers=headers) html = res.text bs = BeautifulSoup(html, "html.parser") tbody = bs.find("body") job_list = tbody.findAll(name='div', attrs={"class": "job_list2"})
时间: 2023-04-09 10:04:05 浏览: 62
python requests.get带header
我可以回答这个问题。这段代码是使用 Python requests 库发送 GET 请求获取网页内容,然后使用 BeautifulSoup 库解析 HTML,最后找到 class 为 job_list2 的 div 元素。
阅读全文