casalogger package for CASA 6
Source
1
1
.. casalogger documentation master file, created by
2
2
sphinx-quickstart on Mon Mar 7 14:36:08 2022.
3
3
You can adapt this file completely to your liking, but it should at least
4
4
contain the root `toctree` directive.
5
5
6
-
Welcome to casalogger's documentation!
6
+
Casalogger
7
7
============================================
8
+
This documentation describes basic usage of the casalogger package.
8
9
9
-
.. toctree::
10
-
:maxdepth: 2
11
-
:caption: Contents:
10
+
Please, refer to `CASA docs <https://casadocs.readthedocs.io/en/latest/notebooks/usingcasa.html?highlight=casalogger#Logging-your-session>`_. for more detailed information.
12
11
12
+
The main function of this package is :func:`casalogger.casalogger`. It is possible to start the graphic interface from the command line with:
13
13
14
+
$ python -m casalogger
14
15
15
-
Indices and tables
16
-
==================
16
+
or from the python interpreter with:
17
17
18
-
* :ref:`genindex`
19
-
* :ref:`modindex`
20
-
* :ref:`search`
18
+
>>> import casalogger
19
+
>>> casalogger.casalogger()
20
+
21
+
22
+
Public Interface
23
+
################
24
+
25
+
* :py:func:`.casalogger`
26
+
* :py:mod:`casalogger.__main__`