sandialabs / pyrocs

pyRoCS is a library of functions used to support resilience analysis of complex systems. The package contains example datasets and tutorial to help demonstrate how the functions can be used.
https://sandialabs.github.io/pyrocs/
Other
3 stars 1 forks source link

Importing modules to pyrocs namespace #15

Closed kbonney closed 2 months ago

kbonney commented 3 months ago

This update adds the modules to the pyrocs namespace so that users can do things like:

import pyrocs
pyrocs.biosciences.somefunction()

instead of

from pyrocs import biosciences
biosciences.somefucntion()