StackOverflow公司的网页抓取公司描述



我正在尝试从https://stackoverflow.com/jobs/companies使用beautifulsoup并且难以弄清楚是否以及如何使用";mt8mb0 fs-body1 fc-black-700";类

from bs4 import BeautifulSoup
import requests
page = requests.get('https://stackoverflow.com/jobs/companies')
soup = BeautifulSoup(page.text, "html.parser")

descriptions = soup.find_all('p', class_ = 'mt8 mb0 fs-body1 fc-black-700')
for description in descriptions:
print(description)
print()

是。您可以使用mt8 mb0 fs-body1 fc-black-700作为class name。这就是您的最终代码应该是什么样子的:

from bs4 import BeautifulSoup
import requests
r = requests.get('https://stackoverflow.com/jobs/companies').text
soup = BeautifulSoup(r,'html5lib')
descriptions = soup.find_all('p', class_ = 'mt8 mb0 fs-body1 fc-black-700')
for desc in descriptions:
print(desc.text)

输出:

Verys was founded in 2012 by Mike Zerkel and Chris Antonius to help bring cutting edge technology innovation back to the United States – p...
We are a global team with plenty ofenterpriseand startup experience. Mix of creative, strategists, technologists, and engineer...
You’ll work with a talented and highly-motivated team that is friendly, fast-moving, self-managing, and highly capable with a sense of hum...
We take the long view of software development and maintenance by
About OutMatch
The OutMatch Talent Intelligence Platform brings clarity to talent decisions by gat...
We do way more than the usual software full stack development. We are also mechanical, electronics hardware, and firmware engineers: Angular.js...
At Citizens, we’re more than a network of brick and mortar branches. We’re a digital company that happens to be a bank.
We h...
Kaliber Labs is a full stack artificial intelligence company focused on bringing objectivity and consistency to the surgical setting with...
Our technologists work on a diverse range of solutions that include strategic technology initiatives, big data, mobile, electronic payments, mac...
We believe in cross-functional, autonomous teams owning strategic parts of the product, end-to-end.
A career at Paige is deeply mission-...

最新更新