I need to make some changes to the way the OSMnx package gets data from the Overpass API.
To do that, I've forked the repo and cloned that fork into a local directory.
I've made a simple change, adding a print functions to start.
I'm trying to figure out the steps for installing and importing the modified version of the package. I've looked at this question
I'm concerned about a namespace conflict, should I change the name of the folder or the name
value in the setup.py
file. I don't want to write over the working version of the package
What file should I point to when installing? setup.py
, core.py
, _init_.py
?
I haven't found any tutorials on how to modify an existing package safely, just stuff on how to make a package from scratch.