Scrapy spider made to scrape rental listings from Clasificados La Voz website
- Clone the repo
- Create virtual environment (optional)
pip install -r requirements.txt
Modify user_config.py
# use lowercase and replace spaces with hyphens
bot_config = {
"base_url": "https://clasificados.lavoz.com.ar/inmuebles/todo",
"operation": "alquileres",
"min_price": "10000",
"max_price": "35000",
"currency": "pesos",
"province": "cordoba",
"city": "cordoba",
"bedrooms": ['1-dormitorio'],
"neighborhoods": ["nueva-cordoba", 'centro']
}
scrapy crawl clasificados -o output.csv
- Sometimes the website behaves inconsistently.
- Sellers might post incorrect data.