Look at this repo : https://github.com/alecalve/python-bitcoin-blockchain-parser I could install it with pip, or checkout it and run setup.py
But I want to do local modification to it, and I'd like to not have to to a pip uninstall/pip install each time I modify it.
Is there a way to checkout the project somewhere on my disk, do some change, and just do "import xxx" in my script, as if I had installed it with pip? Like this each time I do a new modification it will automatically be available.
Thanks.