A python application to log QSOs directly to QRZ.com from the command line
Go to file
Michael Clemens 7287136ae5 screenshot 2022-07-31 11:34:12 +02:00
LICENSE „LICENSE“ ändern 2022-07-29 21:56:27 +02:00
README.md „README.md“ ändern 2022-07-29 22:01:07 +02:00
qrzlogger.py changed question order, implemented fast forward, now version 0.8.1 2022-07-31 10:26:10 +02:00
screenshot_0.8.1.jpg screenshot 2022-07-31 11:34:12 +02:00

README.md

qrzlogger

This script is a QRZ.com command line QSO logger. It does the following:

  1. asks the user for a call sign
  2. displays available call sign info pulled from QRZ.com
  3. displays all previous QSOs with this call (pulled from QRZ.com logbook)
  4. asks the user to enter QSO specific data (date, time, report, band etc.)
  5. uploads the QSO to QRZ.com's logbook
  6. fetches the just uploaded QSO from QRZ.com for review
  7. starts again from 1)

Screnshot

screenshot

Installation

qrzlogger needs Python 3 and the following libraries:

  • xmltodict
  • prettytable
  • colored
  • requests

Furthermore, you need at least the XML subscription from QRZ.com.

Before installing qrzlogger, please make sure that the above mentioned libraries have been installed:

# python3 -m pip install xmltodict
# python3 -m pip install prettytable
# python3 -m pip install colored
# python3 -m pip install requests

To download or update qrzlogger, clone the repo:

# git clone https://codeberg.org/mclemens/qrzlogger.git

Usage

  • execute the application with "python3 qrzlogger.py"
  • qrzlogger creates a default config file and states its location (e.g. ~/.qrzlogger.ini)
  • adapt ~/.qrzlogger.ini to your needs. Important setting are:
    • station_call: This is your station call (must match with the QRZ.com logbook)
    • api_key: Your QRZ.com API key. You find it under "settings" in the QRZ.com logbook'
    • qrz_user: Your QRZ.com user name, typically your call sign'
    • qrz_pass: Your QRZ.com password (not the API key)'
  • execute the application again with "python3 qrzlogger.py"

License

see LICENSE