Python 2.7 comes with json library included. In my PYTHONPATH I include third party sources and one of them is also called json. The result ending up with loaded the wrong json library. What would be a good practice to handle and avoid situations like above? Is there a way to instruct Python to explicitly load the native library in this fashion from ? import json.
| |||
feedback
|
|
You could try
This way the namespace conflict can be removed. Also you can see the discussions about relative/absolute import. It says :
The other technique is to use the imp module
| ||||
|
feedback
|
|
There really is no good way to have multiple modules with the same name on PYTHONPATH[docs], this means that you should probably move the third party json module to an alternate location that is not on PYTHONPATH, and then import it using some other method. The easiest way to do this is to move the third party json module into a subdirectory of the location it is already in, and then make that subdirectory a module by adding __init__.py to it. If you named this new directory 'thirdparty', you could then import your third party json module using Alternatively, you could rename the module to something that does not conflict. | ||||
|
feedback
|