ALifeStdDev

Python development tools for working with standardized ALife data.


Keywords
artificial, life, artificial-life
License
MIT
Install
pip install ALifeStdDev==0.3.3

Documentation

ALife Data Standards - Python Development Utilities

CI Codacy Badge codecov PyPI

This is the repository for the ALifeStdDev Python package, which contains Python development utilities for working with standardized ALife data.

Installation Instructions

ALifeStdDev can be installed using pip:

pip install ALifeStdDev

Usage Instructions

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")