A simple weather parser written in python for https://www.meteoswiss.admin.ch/
Go to file
Sean Blackburn 2dbe9ba1ef
ci/woodpecker/push/vulnerability-scan Pipeline was successful Details
ci/woodpecker/push/push Pipeline was successful Details
ci/woodpecker/cron/vulnerability-scan Pipeline was successful Details
chore: Update pre-commit versions
2024-04-18 12:03:48 +02:00
.vscode Initial commit 2022-08-15 20:24:07 +02:00
.woodpecker chore: Update from template 2024-01-30 23:37:25 +01:00
meteoswissparser chore: Apply python template 2024-01-27 21:32:01 +01:00
tests chore: Apply python template 2024-01-27 21:32:01 +01:00
.copier-answers.yml chore: Update from template 2024-01-30 23:37:25 +01:00
.gitignore Initial commit 2022-08-15 20:24:07 +02:00
.pre-commit-config.yaml chore: Update pre-commit versions 2024-04-18 12:03:48 +02:00
.prettierignore Add some unit tests 2022-09-20 22:32:52 +02:00
.pylintrc chore: Apply python template 2024-01-27 21:32:01 +01:00
.python-version chore: Apply python template 2024-01-27 21:32:01 +01:00
.releaserc.yaml chore: Apply python template 2024-01-27 21:32:01 +01:00
.renovate.json chore: Apply python template 2024-01-27 21:32:01 +01:00
CHANGELOG.md chore(release): 1.3.0 [CI SKIP] 2024-04-18 09:51:55 +00:00
LICENCE chore: Apply python template 2024-01-27 21:32:01 +01:00
README.md chore: Rename readme 2/2 2024-01-30 23:38:20 +01:00
cspell.config.yaml chore: Apply python template 2024-01-27 21:32:01 +01:00
makefile chore: Apply python template 2024-01-27 21:32:01 +01:00
poetry.lock feat: Update all dependencies 2024-04-18 11:50:28 +02:00
pyproject.toml chore(release): 1.3.0 [CI SKIP] 2024-04-18 09:51:55 +00:00

README.md

Meteo Swiss parser

Can parse the meteorological data from https://www.meteoswiss.admin.ch/.

Example:

parser = MeteoSwissParser()
parsed_days = parser.fetch_forecast(plz=6003)
# Or
parsed_days = parser.fetch_forecast(town="Luzern")

print(parsed_days)