Build Python Packages Without Publishing

Easily access and organize your Python modules

Max Reynolds
Towards Data Science
2 min readMay 31, 2020

--

Photo by Leone Venter on Unsplash

Packages in Python allow for seamless distribution of python modules. When we use pip install, we are often downloading a publicly available package from PyPI. Local packages can also be useful for code organization and re-use, allowing you to simply import a module without having to navigate to its directory or…

--

--