aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/osm_where.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/osm_where.py b/src/osm_where.py
index e0b7022..52e7b9b 100755
--- a/src/osm_where.py
+++ b/src/osm_where.py
@@ -1,7 +1,13 @@
#!/usr/bin/env python3
import argparse
+
+import xdg.BaseDirectory
+
+from OSMPythonTools.cachingStrategy import CachingStrategy, JSON
from OSMPythonTools.overpass import Overpass
+CachingStrategy.use(JSON, cacheDir=xdg.BaseDirectory.save_cache_path('osm_where'))
+
import logging
logging.getLogger("OSMPythonTools").setLevel(logging.ERROR)