来自StackOverflow公司的Web刮削公司说明

2024-05-28 22:50:34 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图从https://stackoverflow.com/jobs/companies使用beautifulsoup获取所有公司(所有页面)的描述,并且很难确定是否以及如何使用“mt8 mb0 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()

Tags: httpsimportcompagejobsstackoverflowrequestsfs
1条回答
网友
1楼 · 发布于 2024-05-28 22:50:34

对。您可以使用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-...

相关问题 更多 >

    热门问题