我正在尝试提取EXPERIENCE标签下的数据。我正在使用beautifulsoup提取数据。以下是我的html:
<div><span>EXPERIENCE
<br/></span></div><div><span>
<br/></span></div><div><span>
<br/></span></div><div><span></span><span> </span><span>I worked in XYZ company from 2016 - 2018
<br/></span></div><div><span> I worked on JAVA platform
<br/></span></div><div><span>From then i worked in ABC company
</br>2018- Till date
</br></span></div><div><span>I got handson on Python Language
</br></span></div><div><span>PROJECTS
</br></span></div><div><span>Developed and optimized many application, etc...
到目前为止我的工作
with open('E:/cvparser/test.html','rb') as h:
dh = h.read().splitlines()
out = str(dh)
soup = BeautifulSoup(out,'html.parser')
for tag in soup.select('div:has(span:contains("EXPERIENCE"))'):
final = (tag.get_text(strip = True, separator = '\n'))
print(final)
预期输出:
I worked in XYZ company from 2016 - 2018
I worked on JAVA platform
From then i worked in ABC company
2018- Till date
I got handson on Python Language
对于我的代码,其返回null。有人可以帮我吗?
答案 0 :(得分:2)
我了解到您想在{strong> EXPERIENCE 和 PROJECTS
之间在span
中输入文字
这是您需要的:
from bs4 import BeautifulSoup as soup
html = """<div><span>EXPERIENCE
<br/></span></div><div><span>
<br/></span></div><div><span>
<br/></span></div><div><span></span><span> </span><span>I worked in XYZ company from 2016 - 2018
<br/></span></div><div><span> I worked on JAVA platform
<br/></span></div><div><span>From then i worked in ABC company
</br>2018- Till date
</br></span></div><div><span>I got handson on Python Language
</br></span></div><div><span>PROJECTS
</br></span></div><div><span>Developed and optimized many application, etc...</span></div>"""
page = soup(html, "html.parser")
save = False
final = ''
for div in page.find_all('div'):
text = div.get_text()
if text and text.strip().replace('\n','') == 'PROJECTS':
save = False
if save and text and text.strip().replace('\n', ''):
# last if is to avoid new line in final result
final = '{0}\n{1}'.format(final,text.replace('\n',''))
else:
if text and 'EXPERIENCE' in text:
save = True
print(final)
输出:
I worked in XYZ company from 2016 - 2018
I worked on JAVA platform
From then i worked in ABC company
I got handson on Python Language
答案 1 :(得分:0)
我不确定您的html示例,但是请尝试以下操作:
from bs4 import BeautifulSoup
result2 = requests.get("") # your url here
src2 = result2.content
soup = BeautifulSoup(src2, 'lxml')
for item in soup.find_all('div', {'span': 'Experience'}):
print(item.text)
答案 2 :(得分:0)
您可以使用itertools.groupby
将所有相关的子内容匹配到它们相应的标题:
import itertools, re
from bs4 import BeautifulSoup as soup
d = lambda x:[i for b in x.contents for i in ([b] if b.name is None else d(b))]
data = list(filter(None, map(lambda x:re.sub('\n+|^\s+', '', x), d(soup(html, 'html.parser')))))
new_d = [list(b) for _, b in groupby(data, key=lambda x:x.isupper())]
result = {new_d[i][0]:new_d[i+1] for i in range(0, len(new_d), 2)}
输出:
{'EXPERIENCE': ['\uf0b7', 'I worked in XYZ company from 2016 - 2018', 'I worked on JAVA platform', 'From then i worked in ABC company', 'I got handson on Python Language'], 'PROJECTS': ['Developed and optimized many application, etc...']}
要获得所需的输出,请执行以下操作:
print('\n'.join(result['EXPERIENCE']))
输出:
I worked in XYZ company from 2016 - 2018
I worked on JAVA platform
From then i worked in ABC company
2018- Till date
I got handson on Python Language