I am a beginner in python so my question is kinda trivial. I have an open-source library that I would like to develop and contribute to.
Lets say the lib has operations A,B and C. I want to change something in, say code of A operation and test it. However, every time I execute my modified code of the library it always tends to run the version of the lib installed with pip
.
- I am new to python, but how can I develop code of this lib and then run it using the code that I have actually modified? So that I can see my changes or maybe debug the execution.
- What is the pythonic way of developing locally an OS library so that I can run it, debug it and test it?