Developed by Shd at SMHI.
- Python based service using FastAPI
- Handles the versioned station.txt list at the Swedish NODC
In production: Make sure to add environment variable "SHARK_STATION_LIST" with the path to the versioned controlled station list file.
Create a virtual environment for your project with venv:
python -m venv venvActivate the virtual environment:
source ./venv/bin/activateInstall requirements with pip:
pip install -r requirements.txtAlternative with conda:
conda env create --file environment.yamlActivate environment:
conda activate py39