Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 880 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 880 Bytes

Bergen Forecast

Introduction

Using metno-locationforecast; a Python interface for the MET Norway Locationforecast/2.0 service. A free weather data service provided by the Norwegian Meteorological Institute.

Getting started

It is expected that you have Python installed.

Install the dependency requirements listed in requirements.txt with this command.

pip install -r requirements.txt

Run the program with this command.

python weather-forecast.py

Batch file

Perhaps you'd like to run the Python program from a batch file. This is an example script provided for that.

example/path/run-bergen-forecast.bat

@ECHO OFF

REM Execute the Python script.
python bergen-forecast.py

REM Prevent terminal from exiting immediately
REM after the Python script is finished.
@PAUSE