PyPI is the Python Package Index and is a repository of software for the Python programming language. Developers of Python packages often put their packages up on PyPI such that user's can use pip to easily install their package, i.e.
It is often the case that once a package is pip installed it is ready to be used immediately by simply importing the package into your application code, i.e.
#!/usr/bin/env python3
import pandas as pd
.
.
.
At this moment in time cyPAPI is not on PyPI and would take extra steps to link with PAPI after a pip install. However, still working to add cyPAPI to PyPI should be a goal such that users can simply run pip install cypapi.
PyPI is the Python Package Index and is a repository of software for the Python programming language. Developers of Python packages often put their packages up on PyPI such that user's can use
pipto easily install their package, i.e.It is often the case that once a package is
pipinstalled it is ready to be used immediately by simply importing the package into your application code, i.e.At this moment in time cyPAPI is not on PyPI and would take extra steps to link with PAPI after a
pipinstall. However, still working to add cyPAPI to PyPI should be a goal such that users can simply runpip install cypapi.