使用 BeautifulSoup 获取所有这些文本,选择
我正在使用SELECT方法编写脚本以在附件图片中提取所有文本。 但是到目前为止,在此处输入图像描述只有上一个文本“ 再生医疗・美容点滴”可以是提炼。
我认为“选择”是一种提取每个可靠的CSS选择器的方式。
为什么为什么?
from bs4 import BeautifulSoup
import requests
import pandas as pd
links =[
"https://report.clinic/detail/L_3020779"
]
for link in links:
r = requests.get(link)
soup = BeautifulSoup(r.text,'html.parser')
data1 = list()
data_url = ""
for urls in soup.select(".menu_side_item .list_common .list_item_link .display_flex"):
#links = urls.get("href")
links = urls.get_text().strip()
data_url = links
data1.append(data_url)
print(data_url)
**text I want extract**:
目・二重整形
鼻の整形
しわ・たるみ整形(注入、糸、フェイスリフト)
輪郭・顎・エラ・額・小顔整形
口元・唇の整形・人中短縮
豊胸・胸の整形
脂肪吸引
婦人科形成
タトゥー除去
目元・クマ・眉下・涙袋整形
乳首・乳輪の整形
医療脱毛
ニキビ・ニキビ跡の治療
HIFU・照射系リフトアップ治療
シミ取り・肝斑・毛穴治療
わきが手術・多汗症治療
薄毛治療
痩身、メディカルダイエット
再生医療・美容点滴
I'm writting script to extract all of texts in attached picture by using select method.
But so far, enter image description hereonly last text "再生医療・美容点滴" can be extract.
I thought "select" is a way to extract every appropirate css selector.
Is there somebody why?
from bs4 import BeautifulSoup
import requests
import pandas as pd
links =[
"https://report.clinic/detail/L_3020779"
]
for link in links:
r = requests.get(link)
soup = BeautifulSoup(r.text,'html.parser')
data1 = list()
data_url = ""
for urls in soup.select(".menu_side_item .list_common .list_item_link .display_flex"):
#links = urls.get("href")
links = urls.get_text().strip()
data_url = links
data1.append(data_url)
print(data_url)
**text I want extract**:
目・二重整形
鼻の整形
しわ・たるみ整形(注入、糸、フェイスリフト)
輪郭・顎・エラ・額・小顔整形
口元・唇の整形・人中短縮
豊胸・胸の整形
脂肪吸引
婦人科形成
タトゥー除去
目元・クマ・眉下・涙袋整形
乳首・乳輪の整形
医療脱毛
ニキビ・ニキビ跡の治療
HIFU・照射系リフトアップ治療
シミ取り・肝斑・毛穴治療
わきが手術・多汗症治療
薄毛治療
痩身、メディカルダイエット
再生医療・美容点滴
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的主要问题是
凹痕
- 取决于您的预期行为移动data1
在循环之前,data1.append(data_url)
和print( data_url)
进入您的第二个循环。Main issue here is
indentation
- Depending on your expected behavior movedata1
before your loops,data1.append(data_url)
andprint(data_url)
into your second loop.