We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c0e801 commit d4bdec4Copy full SHA for d4bdec4
1 file changed
contrib/seeds/getseeds.py
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env python3
2
+# Copyright (c) 2019 The MicroBitcoin Core developers
3
+# Distributed under the MIT software license, see the accompanying
4
+# file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
+
6
+import requests
7
+data = requests.get('http://sman.pw/nodes/peers.json').json()
8
+for node in data:
9
+ print(node + ':6502')
0 commit comments