Importing ChemApp for Python Components

If you want to use ChemApp for Python in one of your Python modules, you need to import its components in the same way that any other Python package’s components are imported. For example, you can import the different modules as follows:

from chemapp import core
from chemapp import basic
from chemapp import friendly

You can also use short aliases, if the names are too long.

from chemapp import core as cac
from chemapp import basic as cab
from chemapp import friendly as caf

Doing this depends on your preferences and coding style.