Add QRZ lookup

This commit is contained in:
Ian Renton
2025-09-27 15:24:53 +01:00
parent 00c56a7c10
commit cf1798663d
4 changed files with 83 additions and 26 deletions

19
main.py
View File

@@ -33,11 +33,6 @@ if __name__ == '__main__':
# Set up logging
root = logging.getLogger()
root.setLevel(logging.INFO)
handler = logging.StreamHandler(sys.stdout)
handler.setLevel(logging.INFO)
formatter = logging.Formatter("%(message)s")
handler.setFormatter(formatter)
root.addHandler(handler)
logging.info("Starting...")
# Shut down gracefully on SIGINT
@@ -45,13 +40,13 @@ if __name__ == '__main__':
# Create providers
providers = [
POTA(),
SOTA(),
WWFF(),
WWBOTA(),
GMA(),
HEMA(),
ParksNPeaks(),
# POTA(),
# SOTA(),
# WWFF(),
# WWBOTA(),
# GMA(),
# HEMA(),
# ParksNPeaks(),
DXCluster("hrd.wa9pie.net", 8000),
# DXCluster("dxc.w3lpl.net", 22)
]