- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试抓取此链接中的数据空间: https://www.pap.fr/annonce/ventes-maisons-
我能够抓取数据,但只能从第一页开始,因此我创建了一个循环,遍历所有页面,但没有结果。
有人可以告诉我我的程序出了什么问题吗?
<小时/>for num in range(0, 20):
url = str('https://www.pap.fr/annonce/ventes-maisons-' + str(num))
page = requests.get(url)
data = page.text
soup = BeautifulSoup(data, 'html.parser')
repo = soup.find(class_="search-results-list")
repo_list = repo.find_all(class_='search-list-item')
for repo in repo_list:
full_repo_name = repo.find('p').text.split('.')
Code_postal = full_repo_name[0].strip()
Description = full_repo_name[1].strip()
Prix = repo.find("span", {"class": "item-price"}).string
Nombre_pièces = repo.ul.li.string
x = repo.find('ul', class_="item-tags").find_all('li')[2]
print(repo.text.strip())
Surface = x.text.strip()
f.writerow([Prix, Code_postal, Description, Nombre_pièces, Surface])
最佳答案
由于字段缺失/不一致,这是一个有点棘手的问题。这里有一些可以帮助您入门的内容,但您可能需要稍微调整此脚本以满足您的预期输出:
import csv
import requests
from bs4 import BeautifulSoup
with open("out.csv", "w", newline="") as f:
writer = csv.writer(f)
writer.writerow(["prix", "code_postal", "description", "nombre_pieces", "surface"])
for i in range(1, 20):
url = "https://www.pap.fr/annonce/ventes-maisons-%s" % i
soup = BeautifulSoup(requests.get(url).text, "html.parser")
repo = soup.find(class_="search-results-list")
for repo in repo.find_all(class_="search-list-item"):
body = repo.find("p").text.split(".")
code_postal, description = body[0].strip(), body[1].strip()
prix = repo.find("span", {"class": "item-price"})
prix = prix.text if prix else ""
try:
nombre_pieces = repo.ul.li.text
except:
nombre_pieces = ""
try:
surface = repo.find("ul",class_="item-tags").find_all("li")[2].text.strip()
except:
surface = ""
writer.writerow([prix, code_postal, description, nombre_pieces, surface])
输出 CSV 摘录:
prix,code_postal,description,nombre_pieces,surface
550.000 €,Vaison-la-Romaine (84110),Entre Vaison la Romaine -région et Beaume de Venise,5 pièces,122 m2
350.000 €,La Selve (12170),"Demeure de prestige de 300 m² habitables en pierres de pays, au cœur de la campagne sud aveyronnaise, entièrement rénovée en 2004",8 pièces,300 m2
220.000 €,Labastide-d'Armagnac (40240),"Maison d'habitation du 17e siècle comprenant un rez-de-chaussée et deux étages, entièrement rénovée dans centre village de Labastide d'Armagnac, situé à 29 km est de Mont de Marsan (Landes)",8 pièces,226 m2
95.000 €,Courçon (17170),A 25 mn de La Rochelle,5 pièces,70 m2
1.249.000 €,Pibrac (31820),Dans un environnement exceptionnel avec accès direct à la forêt domaniale de Bouconne,7 pièces,540 m2
828.000 €,Bois-le-Roi (77590),"Superbe maison contemporaine 2010, sur terrain clos et paysager 1",7 pièces,220 m2
278.000 €,Villefranche-sur-Saône (69400),"Compagnie de Construction vous propose, sur la commune de Gleizé, un projet de construction sur une parcelle de terrain de 660 m², exposée Sud-Ouest, cette villa familiale de 80 m² habitables se compose d'un sejour",3 chambres>,Terrain : 662 m²
485.000 €,Valenciennes (59300),**Corps de ferme à 10 mn de Valenciennes (propriété individuelle)**,11 pièces,200 m2
185.000 €,Arrigny (51290),Propriété sur un terrain arboré de 3,9 pièces,241 m2
,Le Carré Jaurès,"OUVERTURE DE LA COMMERCIALISATION
Devenez enfin propriétaire de votre appartement neuf à Livry-Gargan !
De beaux appartements neufs et spacieux, du 2 au 4 pièces s’ouvrant sur un magnifique cœur
d’îlot où la nature",,
485.000 €,Flayosc (83780),"Maison 130m², (surface utile 167m²) centre village à pied, année de construction 1994 ,exposée sud-sud-est, sans vis-à-vis sur un terrain de 1427m² complanté d'oliviers, figuiers, lauriers roses",5 pièces,130 m2
335.000 €,Esclauzels (46090),"15 mn Cahors
5 km du village de Saint Géry
Terrain de 5724 m² clos, arboré et paysagé
Piscine au sel 11 x 4 avec volet roulant automatique solaire avec pool house
Maison 6 pièces de plain pied",6 pièces,145 m2
,Vous envisagez de vendre votre logement ? Notre outil vous permet d'obtenir une estimation gratuite et immédiate en se basant sur un grand volume de ventes réalisées au cours des derniers mois,,,
280.000 €,Rougé (44660),"Entre Bretagne et Pays de Loire, dans un hameau, loin de toute agitation urbaine, vous trouverez une vrai qualité de vie",6 pièces,130 m2
完整的 CSV 有 248 行,但看起来每隔一段时间就有一个广告(通过检查邮政编码字段可以轻松删除):
关于python - 我无法在 Beautifulsoup 中循环多个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56026349/
HTML 在 div 中包含字符串: 'div class="slide"' 'img src="xttps://site.com/files/r_1000,kljg894/43k5j/35h43jk
我用这个方法 allcity = dom.body.findAll(attrs={'id' : re.compile("\d{1,2}")}) 返回这样的列表: [掳虏驴碌路驴碌脴虏煤脨脜脧垄脥酶 隆
我正在使用 Jupyter 笔记本、Python 3.5 和虚拟环境。 在我的虚拟环境中,我做了: (venv) > pip install BeautifulSoup4 这似乎运行良好 b/c 终端
我打算用 GUI 制作一个字典程序,但我在第一个障碍上就失败了。我刚刚安装了一个模块( PyDictionary ),但是当我运行以下代码时出现错误。 from PyDictionary import
我正在将一些解析器从 BeautifulSoup3 迁移到 BeautifulSoup4,我认为考虑到 lxml 非常快并且它是我在 BS4 中使用的解析器,分析它会变得多快是个好主意,这里是分析结果
这个问题在这里已经有了答案: Getting Python error "from: can't read /var/mail/Bio" (6 个答案) 关闭 11 个月前。 From Beauti
目前我无法输入这个,因为根据 top,我的处理器是 100%,我的内存是 85.7%,都被 python 占用了。 为什么?因为我让它通过一个 250 兆的文件来删除标记。 250兆,就是这样!我一直
我写了下面的代码: from bs4 import BeautifulSoup import sys # where is the sys module in the source code fold
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
我正在为一个项目使用 BeautifulSoup。这是我的 HTML 结构 John Sam Bailey Jack
这段代码正确地从我的博客中提取了马拉地语文本。我很欣赏使用漂亮的汤和正则表达式是多么容易。 from bs4 import BeautifulSoup import requests, re url
我想获取 HTML 中隐藏输入字段的值。 我想用 Python 编写一个正则表达式,它将返回 fooId 的值,前提是我知道 HTML 中的行遵循以下格式 有人可以提供一个 Python 示例来解
BeautifulSoup(bs4) BeautifulSoup是python的一个库,最主要的功能是从网页爬取数据,官方是这样解释的:BeautifulSoup提供一些简单,python式函
我正在尝试获取特定月份的所有链接、标题和日期,例如网站上的三月,我正在使用 BeautifulSoup 这样做: from bs4 import BeautifulSoup import reques
我正试图通过此链接收集有关 2020 年世界上收入最高的运动员收入的信息 https://www.forbes.com/profile/roger-federer/?list=athletes这是第一
我正在尝试从带有美丽汤的网页中捕获所有相关链接。我需要的所有链接都有 class="btn btn-gray"还有文字 More Info<> 仅提取这些链接的最佳方法是什么? 最佳答案 这个怎么样?
我正在尝试抓取一个具有下拉菜单的站点,用户可以在其中选择要显示的数据的年份。但是,我似乎被困在我的实现中。 这是网站网址:https://www.pgatour.com/tournaments/mas
我正在使用 BeautifulSoup 和 mechanise 从网页中查找一些内容。问题是有时找不到我正在寻找的字符串。我不知道有什么问题 对于许多网页,它可以正常工作数月,但突然停止工作。然后我必
( 更新代码 就在下面) 我有一个类:UrlData , 生成一个 url 列表: for url in urls: rawMechSiteInfo = mech.open(url) #me
我是一名优秀的程序员,十分优秀!