ZCSCommonLibrary

A Common Library For Use In Computer Science Projects

Welcome to the ZCSCommonLibrary website!

The ZCSCommonLib library exists as a general library to provide various utilities, generally useful in computer science courses. All are welcome to contribute to the library (through pull requests) and add general (or more complicated) functions to it.

Get The Library

You can now download the library directly from PyPi (pip) using the following command to include it in your projects.

pip install zcscommonlib

Importing The Library

You can use the following code to import the ZCSCommonLib library to your Python projects.

from zcscommonlib import functions as fcns

For more details on how to use the library, see our documentation here or our GitHub repository.

Build The Library

Prepare the library for development and build it.

pip install -r requirements.txt
python setup.py bdist_wheel
pip install ./dist/zcscommonlib-VERSION-py3-none-any.whl

Running Tests

Run tests on the functions listed in test_functions.py.

python setup.py pytest

Support or Contact

Having trouble with using ZCSCommonLibrary? Check out our documentation or make a bug report on Github and we’ll help you sort it out.