qrzlogger/README.md

61 lines
2.1 KiB
Markdown
Raw Normal View History

# qrzlogger
2021-05-20 16:05:33 +00: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 10:19:30 +00:00
4) asks the user to enter QSO specific data (date, time, report, band etc.)
2021-05-20 16:05:33 +00:00
5) uploads the QSO to QRZ.com's logbook
2021-05-24 21:02:15 +00:00
5) fetches the just uploaded QSO from QRZ.com for review
7) starts again from 1)
2021-05-21 14:31:35 +00:00
# Screnshot
![screenshot](/screenshot.jpg?raw=true "screenshot")
2021-05-20 16:05:33 +00:00
2021-05-21 06:56:50 +00:00
# Dependencies
2021-05-20 21:17:07 +00:00
qrzlogger needs the following libraries:
2021-05-21 14:20:34 +00:00
* xmltodict
* prettytable
* colored
2021-05-20 21:17:07 +00:00
These libraries can be installed with the following command on Debian Linux based operating systems:
```
2021-05-21 14:20:34 +00:00
# sudo apt install python3-xmltodict python3-prettytable python3-colored
2021-05-20 21:17:07 +00:00
```
2021-05-21 08:47:02 +00:00
Furthermore, you need at least the XML subscription from QRZ.com.
2021-05-20 21:17:07 +00:00
# Installation
2021-05-20 16:05:33 +00:00
* 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
2021-05-20 16:05:33 +00:00
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.