Test Python module to get me familiar with creation and maintenance of a Python module
From the terminal
$ git clone https://github.com/erictleung/python-module.git
$ cd python-module
$ python3
$ git clone https://github.com/erictleung/python-module.git
$ cd python-module
$ pip install .
$ pip install git+git://github.com/erictleung/python-module.git
Use optional --upgrade
flag to keep package up-to-date.
Once in Python
>>> from Animals import Mammals
>>> myMammal = Mammals()
>>> Mammals.printMembers()
Printing members of the Mammals class
Tiger
Zebra
Giraffe