I have made my first python module. It works ok but the problem I have is how to run it locally efficiently when I make changes.
Currently I have to do pip install .
every time I make a change. It contains relative imports (which I think you have to do in a module) so I don’t see how to avoid it. If I am just fixing typos this is very slow.
What’s the right way to debug a python module?