Minor README updates & change ipdeny URLs to HTTP to bypass cert issues

This commit is contained in:
Toby
2021-08-12 10:22:07 -07:00
parent 481abdf41d
commit 9cf435f535
3 changed files with 11 additions and 11 deletions

View File

@@ -5,9 +5,9 @@ from itertools import chain
from datetime import date
data_ipv4 = urllib.request.urlopen(
'https://www.ipdeny.com/ipblocks/data/aggregated/cn-aggregated.zone')
'http://www.ipdeny.com/ipblocks/data/aggregated/cn-aggregated.zone')
data_ipv6 = urllib.request.urlopen(
'https://www.ipdeny.com/ipv6/ipaddresses/aggregated/cn-aggregated.zone')
'http://www.ipdeny.com/ipv6/ipaddresses/aggregated/cn-aggregated.zone')
data = chain(data_ipv4, data_ipv6)