Tagged Questions

6
votes
3answers
166 views

Importing everything ( * ) dynamically from a module

I have a Python module that I want to dynamically import given only a string of the module name. Normally I use importlib or __import__ and this works quite well given that I know which objects I want ...
6
votes
3answers
312 views

Prevent Python from caching the imported modules

While developing a largeish project (split in several files and folders) in Python with IPython, I run into the trouble of cached imported modules. The problem is that instructions import module only ...
4
votes
4answers
74 views

Python imports across modules and global variables

I have a question which seems to be rather fundamental but I can't seem to find any help on this anywhere. file_a.py >> from xyz import XYZ class A: . . . file_b.py >> ...
4
votes
5answers
1k views

Test for Python module dependencies being installed

How could one test whether a set of modules is installed, given the names of the modules. E.g. modules = set(["sys", "os", "jinja"]) for module in modules: # if test(module exists): # do ...
2
votes
3answers
111 views

Python: How do I disallow imports of a class from a module?

I tried: __all__ = ['SpamPublicClass'] But, of course that's just for: from spammodule import * Is there a way to block importing of a class. I'm worried about confusion on the API level of my ...
1
vote
2answers
39 views

Python dependency between modules [closed]

Possible Duplicate: Python: Circular (or cyclic) imports Circular dependency in Python I have a Python package featuring two modules that import each other. That is, in module A we have ...
1
vote
2answers
46 views

re-import module-under-test to lose context

Many Python modules preserve an internal state without defining classes, e.g. logging maintains several loggers accessible via getLogger(). How do you test such a module? Using the standard unittest ...
1
vote
3answers
187 views

Python - Importing a global/site-packages module rather than the file of the same name in the local directory

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 ...
1
vote
3answers
927 views

Efficiently importing modules in Django views

I was wondering - how do people handle importing large numbers of commonly used modules within django views? And whats the best method to do this efficiently? For instance, I've got some views like, ...
0
votes
1answer
42 views

How to do absolute imports of outside modules in python

I have these files: my_modules/ __init__.py sys.py In sys.py: import sys def foo(): print sys.path In Python, I: > import my_modules.sys > foo() It doesn't work and I get an ...