Python PIP
`pip` is a package management system in Python used for installing and managing software packages written in Python, facilitating easy distribution and installation of libraries and applications from the Python Package Index (PyPI) and other repositories.

Install a package using pip

Import installed package

#pip install camelcase
import camelcase
c = camelcase.CamelCase()
txt = "python was created by guido van rossum, and released in 1991"
print(c.hump(txt))
Python Online Compiler