static S openWeatherMapAPIKey() {
  ret loadSecretTextFileMandatory("", "open-weather-map-api-key.txt").trim();
}

static void openWeatherMapAPIKey(S key) {
  saveSecretTextFile("", "open-weather-map-api-key.txt", key);
}