Basic Usage
With Installation
You can create menu entries for MEAFS by typing in the terminal or cmd:
meafs-desktop-create
meafs
Or:
python -m meafs_code
For the command line option, do not forget to activate the Anaconda environment if you are using it. For the menu entry, this is done automatically if necessary.
Since MEAFS is a Python library, you can always import it in your own program and run specific functions (see Package Overview):
import meafs_code as meafs
Without Installation
Simply execute the file meafs_code/gui.py and it will power the GUI.
Flags and Arguments
There are some flags that can be passed with the command-line.
- -h, --help
Show the help section.
- -v, --version
Show version number.
- -l, --last
Load the last closed session. Default location is
meafs_code/auto_save_last.pkl.- -s, --load-auto-save
Load the auto saved session. Default location is:
meafs_code/auto_save.pkl.
Also, any saved section can be passed as an argument and MEAFS will power the GUI with it:
meafs path/to/session.pkl
If no argument is given, the GUI will power with a new empty session.
Auto Save Capability
auto_save.pkl.auto_save_last.pkl file.-h flag
will show their location.See more at Auto Save.