2021-05-20 12:12:05 -04:00
|
|
|
# qrzlogger
|
2021-05-20 12:05:33 -04:00
|
|
|
|
|
|
|
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)
|
2021-05-21 06:19:30 -04:00
|
|
|
4) asks the user to enter QSO specific data (date, time, report, band etc.)
|
2021-05-20 12:05:33 -04:00
|
|
|
5) uploads the QSO to QRZ.com's logbook
|
2021-05-24 17:02:15 -04:00
|
|
|
5) fetches the just uploaded QSO from QRZ.com for review
|
|
|
|
7) starts again from 1)
|
2021-05-21 10:31:35 -04:00
|
|
|
|
|
|
|
# Screnshot
|
|
|
|
|
|
|
|
![screenshot](/screenshot.jpg?raw=true "screenshot")
|
2021-05-20 12:05:33 -04:00
|
|
|
|
2021-05-21 02:56:50 -04:00
|
|
|
# Dependencies
|
2021-05-20 17:17:07 -04:00
|
|
|
|
|
|
|
qrzlogger needs the following libraries:
|
|
|
|
|
2021-05-21 10:20:34 -04:00
|
|
|
* xmltodict
|
|
|
|
* prettytable
|
|
|
|
* colored
|
2021-05-20 17:17:07 -04:00
|
|
|
|
|
|
|
These libraries can be installed with the following command on Debian Linux based operating systems:
|
|
|
|
|
|
|
|
```
|
2021-05-21 10:20:34 -04:00
|
|
|
# sudo apt install python3-xmltodict python3-prettytable python3-colored
|
2021-05-20 17:17:07 -04:00
|
|
|
```
|
|
|
|
|
2021-05-21 04:47:02 -04:00
|
|
|
Furthermore, you need at least the XML subscription from QRZ.com.
|
|
|
|
|
2021-05-20 17:17:07 -04:00
|
|
|
# Installation
|
2021-05-20 12:05:33 -04:00
|
|
|
|
2021-06-01 10:17:31 -04:00
|
|
|
* copy _qrzlogger.py_ into a directory
|
2021-05-20 12:12:05 -04:00
|
|
|
* execute with "python3 qrzlogger.py"
|
2021-06-01 10:17:31 -04:00
|
|
|
* the application creates a default config file and states its location (_~/.qrzlogger.ini_)
|
|
|
|
* adapt _~/.qrzlogger.ini_ to your needs
|
|
|
|
* execute the application again with "python3 qrzlogger.py"
|
2021-05-20 12:12:05 -04:00
|
|
|
|
2021-06-01 10:17:31 -04:00
|
|
|
# License
|
2021-05-20 12:05:33 -04:00
|
|
|
|
2021-06-01 10:17:31 -04:00
|
|
|
see LICENSE
|