usse/scrape
Eljakim Herrewijnen dbe8cc2846 update
2023-12-28 16:44:59 +01:00
..
.vscode update 2023-12-22 15:26:01 +01:00
funda-scraper removed out.json 2023-12-28 15:27:43 +00:00
.gitignore updated .gitignore 2023-12-27 22:29:12 +00:00
funda_scraper update 2023-12-22 15:26:01 +01:00
panda_dump.bin update 2023-12-28 16:43:53 +01:00
Readme.md Update 2023-12-27 23:18:06 +01:00
README.md update 2023-12-22 15:26:01 +01:00
requirements.txt updated docs 2023-12-27 23:29:25 +01:00
scrape_README.md Update 2023-12-27 22:45:02 +01:00
usse_gmaps.py update 2023-12-22 15:26:01 +01:00
usse.py update 2023-12-28 16:43:53 +01:00

FundaScraper

FundaScaper provides you the easiest way to perform web scraping from Funda, the Dutch housing website. You can find listings from either house-buyer or rental market, and you can find historical data from the past few year.

Install

pip install funda-scraper

Quickstart

from funda_scraper import FundaScraper

scraper = FundaScraper(area="amsterdam", want_to="rent", find_past=False)
df = scraper.run()
df.head()

image

You can pass several arguments to FundaScraper() for customized scraping:

  • area: Specify the city or specific area you want to look for, eg. Amsterdam, Utrecht, Rotterdam, etc
  • want_to: You can choose either buy or rent, which finds houses either for sale or for rent.
  • find_past: Specify whether you want to check the historical data. The default is False.
  • n_pages: Indicate how many pages you want to look up. The default is 1.

Advanced usage

You can check the example notebook for further details. Please give me a star if you find this project helpful.