A python application to log QSOs directly to QRZ.com from the command line
Go to file
2021-05-21 17:56:55 +02:00
config.ini.dist added colored text 2021-05-21 16:20:34 +02:00
qrzlogger.py last QSO table will not be shown anymore if there are no previous QSOs 2021-05-21 17:56:55 +02:00
README.md added screenshot 2021-05-21 16:31:35 +02:00
screenshot.jpg added screenshot 2021-05-21 16:31:35 +02:00

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. starts again from 1)

Screnshot

screenshot

Dependencies

qrzlogger needs the following libraries:

  • xmltodict
  • prettytable
  • colored

These libraries can be installed with the following command on Debian Linux based operating systems:

# sudo apt install python3-xmltodict python3-prettytable python3-colored

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

Installation

  • Copy all files into a directory
  • rename config.ini.dist to config.ini
  • adapt config.ini to your needs
  • execute with "python3 qrzlogger.py"

MIT License

Copyright (c) 2021 Michael Clemens, DL6MHC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.