pysymlog
Installation
With pip:
pip install pysymlog
Standalone:
Alternatively, can download just the pysymlog.py to run in standalone mode – this may be a better option if pip installation is not possible on your machine. It’s possible to simply run/execfile pysymlog.py in your python session to load its functions. You could also add the file location to your local path:
(for .bashrc)
export PYTHONPATH=$PYTHONPATH:/path/to/dir/with/obs/
(for .cshrc)
setenv PYTHONPATH ${PYTHONPATH}:/path/to/dir/with/obs/
Basic Usage
import pysymlog as psl
#to use the matplotlip functionality:
psl.register_mpl()
#to use the plotly functionality:
psl.register_plotly()
Or, as a standalone script, download and cd to that directory, and type:
python pysymlog.py
Examples
See the main examples tutorial jupyter notebook. View on nbviewer here: