Importing modulesΒΆ

After installing, the package can be accessed in Python. Here is Python code to import the main package and see the available modules:

import phyoce
help(physoce)

Python code to import a module from the main physoce package and see the functions available in that module:

from physoce import graph
help(graph)