1
vote
3answers
109 views
Error importing a python module in Django
In my Django project, the following line throws an ImportError: "No module named elementtree".
from elementtree import ElementTree
However, the module is installed (ie, I can …
1
vote
4answers
137 views
Check for a module in Python without using exceptions
I can check for a module in Python doing something like:
try:
import some_module
except ImportError:
print "No some_module!"
But I don't want to use try/except. Is there a w …
1
vote
3answers
136 views
Efficiently importing modules in Django views
Hi all,
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 instanc …
2
votes
5answers
489 views
What do I need to read Microsoft Access databases using Python?
How can I access Microsoft Access databases in Python? With SQL?
I'd prefere a solution that works with Linux, but I could also settle for Windows.
I only require read access.
2
votes
4answers
199 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 exi …
3
votes
1answer
85 views
Is there a fini routine for a python module written in C?
I have a python module written in C, and I would like to add a function that is called when the module is unloaded. I obviously have an initfoo function to initialize the module -- …
0
votes
1answer
175 views
Is there a good python module that does HTML encoding/escaping in C?
There is cgi.escape but that appears to be implemented in pure python. It seems like most frameworks like Django also just run some regular expressions. This is something we do a …
5
votes
3answers
716 views
How to get filename of the __main__ module in Python?
Suppose I have two modules:
a.py:
import b
print __name__, __file__
b.py:
print __name__, __file__
I run the "a.py" file. This prints:
b C:\path\to\code\b.py
__main_ …
0
votes
4answers
385 views
External classes in Python
I'm just beginning Python, and I'd like to use an external RSS class. Where do I put that class and how do I import it? I'd like to eventually be able to share python programs.
5
votes
4answers
424 views
How do I document a module in Python?
That's it. If you want to document a function or a class, you put a string just after the definition. For instance:
def foo():
"""This function does nothing."""
pass
But …
