From 8800bd756ee42ec607313ffab9a0077dc596e8c8 Mon Sep 17 00:00:00 2001 From: a1denvalu3 Date: Tue, 21 Jul 2026 10:57:56 +0200 Subject: [PATCH] fix: update GeoIP database download URL --- relays_geo_lookup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relays_geo_lookup.py b/relays_geo_lookup.py index f0b0087..2a69d36 100755 --- a/relays_geo_lookup.py +++ b/relays_geo_lookup.py @@ -14,7 +14,7 @@ import argparse from typing import List, Tuple, Optional, Dict # Configuration -DB_URL = "https://raw.githubusercontent.com/sapics/ip-location-db/refs/heads/main/dbip-city/dbip-city-ipv4-num.csv.gz" +DB_URL = "https://github.com/sapics/ip-location-db/releases/download/latest/dbip-city-ipv4-num.csv.gz" DB_FILENAME_GZ = "dbip-city-ipv4-num.csv.gz" DB_FILENAME = "dbip-city-ipv4-num.csv"