Skip to content

Instantly share code, notes, and snippets.

View Jacoblightning's full-sized avatar

Jacob Jacoblightning

  • 03:43 (UTC -05:00)
View GitHub Profile
@Jacoblightning
Jacoblightning / monitor_monero_sync_status.py
Last active October 9, 2025 04:33
Simple monero node sync progress monitor
import argparse
import requests
import time
import tqdm
class Port:
def __init__(self, n: str|int):
if isinstance(n, str):
try:
n = int(n)