mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
contrib: add seeds progress indicator and remove asmap one in makeseeds script
This commit is contained in:
parent
b54180303d
commit
ae00b9e02c
1 changed files with 3 additions and 5 deletions
|
@ -141,10 +141,6 @@ def filterbyasn(asmap: ASMap, ips: List[Dict], max_per_asn: Dict, max_per_net: i
|
||||||
asn_count: Dict[int, int] = collections.defaultdict(int)
|
asn_count: Dict[int, int] = collections.defaultdict(int)
|
||||||
|
|
||||||
for i, ip in enumerate(ips_ipv46):
|
for i, ip in enumerate(ips_ipv46):
|
||||||
if i % 10 == 0:
|
|
||||||
# give progress update
|
|
||||||
print(f"{i:6d}/{len(ips_ipv46)} [{100*i/len(ips_ipv46):04.1f}%]\r", file=sys.stderr, end='', flush=True)
|
|
||||||
|
|
||||||
if net_count[ip['net']] == max_per_net:
|
if net_count[ip['net']] == max_per_net:
|
||||||
# do not add this ip as we already too many
|
# do not add this ip as we already too many
|
||||||
# ips from this network
|
# ips from this network
|
||||||
|
@ -184,8 +180,10 @@ def main():
|
||||||
asmap = ASMap(args.asmap)
|
asmap = ASMap(args.asmap)
|
||||||
print('Done.', file=sys.stderr)
|
print('Done.', file=sys.stderr)
|
||||||
|
|
||||||
|
print('Loading and parsing DNS seeds…', end='', file=sys.stderr, flush=True)
|
||||||
lines = sys.stdin.readlines()
|
lines = sys.stdin.readlines()
|
||||||
ips = [parseline(line) for line in lines]
|
ips = [parseline(line) for line in lines]
|
||||||
|
print('Done.', file=sys.stderr)
|
||||||
|
|
||||||
print('\x1b[7m IPv4 IPv6 Onion Pass \x1b[0m', file=sys.stderr)
|
print('\x1b[7m IPv4 IPv6 Onion Pass \x1b[0m', file=sys.stderr)
|
||||||
print(f'{ip_stats(ips):s} Initial', file=sys.stderr)
|
print(f'{ip_stats(ips):s} Initial', file=sys.stderr)
|
||||||
|
|
Loading…
Add table
Reference in a new issue