Tagged Questions
4
votes
1answer
77 views
How do I avoid naming clashes within Python's module system?
In my Django project I have an app called profile, which mostly contains my profile.models.UserProfile class for additional information on User objects (may seem familiar to Django folks). Now I've ...
3
votes
1answer
67 views
How to access a python module variable using a string [ django ]
I have a django application, with a module called "app"
Now this module has a file called "urls.py" which has a variable called "HOME_URL"
What I'm trying to do ?
app_label = "app"
url = ...
2
votes
2answers
38 views
Load newly installed modules in python script
I am writing a python script which automatically sets up a django web server environment.
In the script, I am installing a new modules using
for package in packages:
os.system("%s %s" % ...
1
vote
1answer
65 views
Using scipy.stats.stats in django after deployment
I am in the process of creating an django-powered (1.3) interface to a package that relies heavily in scipy.stats.stats (scipy version 0.9.0), called ovl . During early development phases, using ...
1
vote
3answers
160 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
400 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 run an interactive ...
1
vote
3answers
883 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
76 views
Threading in Python : Python 'args' is an invalid keyword argument for this function, why?
I have written code for threading in Python.
It throws the error below.
How should I fix that error?
from django.core.management import setup_environ
import settings
...
0
votes
5answers
73 views
get the modules locally for django project
Is there a way to import all the modules in the django project itself instead of setting up again and again in all the systems.
I would have used gem freeze or something like that in a rails project.
0
votes
0answers
54 views
error importing elementtree library using python_openid and django-social-auth
after installing python-openid I get the following error in django:
No ElementTree library found. You may need to install one.
Tried importing ['lxml.etree', 'xml.etree.cElementTree', ...