Python pypi code example
Example 1: pypi release
python3 setup.py sdist bdist_wheel
twine upload dist/*
Example 2: install python package
pip3/pip2 install <package>
Example 3: install packages with pip from python
pip3 install <package_name>