From a8da0e2eca96cedaf582bc41ab82ec4ff87e443c Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sun, 26 Sep 2021 08:28:01 -0700 Subject: Cached weather data. --- cached/weather_data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cached/weather_data.py') diff --git a/cached/weather_data.py b/cached/weather_data.py index 4c46448..78f7ade 100644 --- a/cached/weather_data.py +++ b/cached/weather_data.py @@ -3,6 +3,7 @@ from dataclasses import dataclass import datetime import json +import os from typing import List import urllib.request @@ -19,7 +20,7 @@ cfg = config.add_commandline_args( cfg.add_argument( '--weather_data_cachefile', type=str, - default='/home/scott/.weather_summary_cache', + default=f'{os.environ["HOME"]}/.weather_summary_cache', metavar='FILENAME', help='File in which to cache weather data' ) -- cgit v1.3