This is the repository for the ALifeStdDev Python package, which contains Python development utilities for working with standardized ALife data.
ALifeStdDev can be installed using pip:
pip install ALifeStdDev
To load a single submodule,
from ALifeStdDev import phylogeny as asd_phylo
asd_phylo.load_phylogeny_to_pandas_df("myfile.csv")
To load the library as a flat namespace,
from ALifeStdDev import ALifeStdDev as asd
asd.load_phylogeny_to_pandas_df("myfile.csv")