********************************* Importing pycraf and subpackages ********************************* Using pycraf in Python is as simple as:: import pycraf Then one can access the subpackages via:: pycraf. and call associated functions, e.g.:: pycraf.conversions.free_space_loss(...) It is also possible to do:: from pycraf import Or, if you want to avoid typing a lot:: from pycraf. as from pycraf. import For example:: from pycraf import conversions as cnv cnv.free_space_loss(...) from pycraf.conversions import free_space_loss free_space_loss(...)