X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=cached%2Fweather_data.py;fp=cached%2Fweather_data.py;h=78f7ade4b571a01436cf79876fc1b540d5ee52b3;hb=a8da0e2eca96cedaf582bc41ab82ec4ff87e443c;hp=4c464483386b103c4a3618174e22a3e3f0b3e433;hpb=d2730e42f1160d45ab6c7780987b16ae83c616f6;p=python_utils.git 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' )