Installation

digging is currently hosted on PyPI. It required python >= 3.6.

You can simply install digging from PyPI with the following command:

pip install DIgging

You can also install with the newest version through source code:

git clone https://github.com/opendilab/DIgging.git
cd DIgging
pip install --user .

After installation, run this python code, and version information of digging should be shown.

1from digging import __TITLE__, __VERSION__, __AUTHOR__, __DESCRIPTION__
2
3if __name__ == '__main__':
4    print(__TITLE__, __VERSION__)
5    print(__DESCRIPTION__)
6    print('Powered by', __AUTHOR__)

digging is still under development.