Skip to content

Instantly share code, notes, and snippets.

6450 ['https://www.otodom.pl/oferta/mieszkanie-w-kamienicy-przy-metrze-dw-wilenski-ID40Z8y.html'] 1890
6487 ['https://www.otodom.pl/oferta/mieszkanie-68-91-m-warszawa-ID3SbLe.html'] 1999
6625 ['https://www.otodom.pl/oferta/sprzedam-bezposrednio-atrakcyjne-2-poziomowe-ID3mXCk.html'] 2001
6625 ['https://www.otodom.pl/oferta/dwupoziomowe-przestronne-80m2-bielany-ID40zmo.html'] 2001
6667 ['https://www.otodom.pl/oferta/w-pelni-wyposazone-mieszkanie-ochota-rakowiec-tbs-ID3ZkFK.html'] 2006
6708 ['https://www.otodom.pl/oferta/fantastyczne-mieszkanie-z-ogrodem-102m2-ID41bJv.html'] 1000
6713 ['https://www.otodom.pl/oferta/dwupoziomowe-na-bielanach-ID3ZZHV.html'] 2002
6800 ['https://www.otodom.pl/oferta/anin-super-lokalizacja-swietny-rozklad-pokoi-ID3X712.html'] 1968
6829 ['https://www.otodom.pl/oferta/wlochy-61m2-blisko-pkp-skm-i-autobusy-ID3U5Ek.html'] 2000
6900 ['https://www.otodom.pl/oferta/apartament-71-91m2-warszawa-wilanow-ID418So.html'] 2017
#!/usr/bin/env python3
import requests, re
from bs4 import BeautifulSoup
url = 'https://www.otodom.pl/sprzedaz/mieszkanie/warszawa/?search%5Bfilter_float_price%3Afrom%5D=400000&search%5Bfilter_float_price%3Ato%5D=550000&search%5Bfilter_float_m%3Afrom%5D=38&search%5Bfilter_enum_rooms_num%5D%5B0%5D=2&search%5Bdescription%5D=1&search%5Border%5D=created_at_first%3Adesc&search%5Bcity_id%5D=26&search%5Bsubregion_id%5D=197&search%5Bregion_id%5D=7'
r = requests.get(url)
soup = BeautifulSoup(r.content, 'html.parser')
element = soup.find('div', class_='offers-index pull-left text-nowrap').find('strong')