SHMU made available for DanubeHack 3.0 some environment observation data at:
http://meteo.shmu.sk/customer/home/opendata/
We can say it is a REST API with CSV payload. Thus this scraper is not "the usual one" (thanks to REST and CSV, its job would be much easier compared to other scrapers):
- crawl all data
- (optionally) keep local copy of CSV snapshots
- compile all snapshots into one SQLite database
- source: http://meteo.shmu.sk/customer/home/opendata/
- data license: CC-BY
- reference: https://data.gov.sk/dataset/atmosfericke-podmienky-a-meteorologicke-geograficke-prvky
works
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip
# optional step
pip install -r requirements.txt
python scraper.py
Scraper is licensed under BSD license, see full text of license.
This is a scraper that runs on Morph. To get started see the documentation
- ...