pyqso/docs/source/getting_started.rst

97 wiersze
3.3 KiB
ReStructuredText

Getting started
===============
System requirements
-------------------
It is recommended that users run PyQSO on the Linux operating system,
since all development and testing of PyQSO takes place there.
As the name suggests, PyQSO is written primarily in the Python
programming language (version 3.x). The graphical user interface has been built using
the GTK+ library through the PyGObject bindings. PyQSO also uses an
SQLite embedded database to manage all the contacts an amateur radio
operator makes. Users must therefore make sure that the Python
interpreter and any additional software dependencies are satisfied
before PyQSO can be run successfully. The list of software packages that
PyQSO depends on is provided in the ``README.md`` file.
Installation and running
------------------------
Assuming that the current working directory is PyQSO's base directory
(the directory that the Makefile is in), PyQSO can be installed via the
terminal with the following command:
.. code-block:: bash
make install
Note: ``sudo`` may be needed for this. Once installed, the following
command will run PyQSO:
.. code-block:: bash
pyqso
Alternatively, PyQSO can be run (without installing) with:
.. code-block:: bash
python3 bin/pyqso
from PyQSO's base directory.
Command-line options
~~~~~~~~~~~~~~~~~~~~
There are several options available when executing PyQSO from the
command-line.
Open a specified logbook file
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
In addition to being able to open a new or existing logbook through the
graphical interface, users can also specify a logbook file to open at
the command line with the ``-l`` or ``--logbook`` option. For example, to
open a logbook file called ``mylogbook.db``, use the following command:
.. code-block:: bash
pyqso --logbook /path/to/mylogbook.db
If the file does not already exist, PyQSO will create it.
Debugging mode
^^^^^^^^^^^^^^
Running PyQSO with the ``-d`` or ``--debug`` flag enables the debugging
mode:
.. code-block:: bash
pyqso --debug
All debugging-related messages are written to a file called ``pyqso.debug``,
located in the current working directory.
Creating and opening a logbook
------------------------------
A PyQSO-based logbook is essentially an SQL database. To create a new database/logbook file, click ``Create a New Logbook...`` in the ``Logbook`` menu, choose the directory where you want the file to be saved, and enter the file's name (e.g. ``my_new_logbook.db``). The new logbook will then be opened automatically. If you would like to open an *existing* logbook file, click ``Open an Existing Logbook...`` in the ``Logbook`` menu. Note that logbook files usually have a ``.db`` file extension.
Once the logbook has been opened, its name will appear in the status bar. All logs in the logbook will be opened automatically, and the interface will look something like the one shown in figure:logbook_.
.. _figure:logbook:
.. figure:: images/logbook.png
:align: center
The PyQSO main window, showing the records in a log called ``SO50`` (for contacts via an amateur radio satellite called SO-50), and the DX cluster tool in the toolbox below it.
Closing a logbook
-----------------
A logbook can be closed by clicking the ``Close Logbook`` button in the toolbar, or by clicking ``Close Logbook`` in the ``Logbook`` menu.