I'm using python and virtualenv/pip. I have a module installed via pip called test_utils (it's django-test-utils). Inside one of my django apps, I want to import that module. However I also have another file test_utils.py in the same directory. If I go import test_utils, then it will import this local file.

Is it possible to make python use a non-local / non-relative / global import? I suppose I can just rename my test_utils.py, but I'm curious.

link|improve this question

76% accept rate
feedback

3 Answers

You can switch the search order by changing sys.path:

del sys.path[0]
sys.path.append('')

This puts the current directory after the system search path, so local files won't shadow standard modules.

link|improve this answer
feedback

You could reset your sys.path:

import sys
first = sys.path[0]
sys.path = sys.path[1:]
import test_utils
sys.path = first + sys.path

The first entry of sys.path is "always" (as in "per default": See python docs) the current directory, so if you remove it you will do a global import.

link|improve this answer
feedback
up vote 0 down vote accepted

Since my test_utils was in a django project, I was able to go from ..test_utils import ... to import the global one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.