This package contains helpers and utilities to promote code reusability across multiple Python applications.
-
Add
pyck@git+https://github.com/tchangkiat/pyckinpyproject.tomlorrequirements.txt. -
Install the dependencies using
pip install -e .(if you are using pyproject.toml) orpip install -r requirements.txt(if you are using requirements.txt). Alternatively, runpip install --upgrade --force-reinstall pyck@git+https://github.com/tchangkiat/pyckto re-install this package in the application's virtual environment. -
Import the modules and invoke the methods. For example,
from pyck.helpers.logging import Logging log = Logging.get_instance() log.info("Hello World!")