Tagged Questions

6
votes
3answers
284 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 ...
3
votes
1answer
76 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 ...
2
votes
6answers
4k views

How to properly use relative or absolute imports in Python modules?

Usage of relative imports in Python has one drawback, you will not be able to run the modules as standalones anymore because you will get an exception: ValueError: Attempted relative import in ...
2
votes
3answers
108 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
1answer
62 views

how to import the new installed module whie an old same module exists

everybody! the built-in pycurl module doesn't define Curl object conn = pycurl.Curl() Error message: "pycurl" module has no attribute Curl so I download the latest pycurl and install ...
1
vote
1answer
121 views

what are the rules for imports in python

I have a directory structure : ../POC/mud/ client/ common/ server/ and i am trying to use the following imports : from mud.server import config from ...
1
vote
2answers
57 views

How can I get 'urlpatterns = __import__(<string_name>)' to work like a normal import statement?

I'm trying to create an import statement that's pluggable with other projects. This statement is located in urls.py So this works: from forum.urls import urlpatterns # Base Class: <type ...
1
vote
3answers
142 views

python more trouble importing modules

I asked a similar question yesterday, but have acquired a really odd problem since then. With this directory structure: app/ models/ __init__.py user.py other.py ...
0
votes
0answers
36 views

load_module of pkgutil doesn't load module with dependencies

I have following python project file structure: /main.py /functions/func1.py /functions/func2.py /functions/serv_func.py Main.py works with pkgutil. It uses function load_module(name), where name ...
0
votes
1answer
56 views

Python module import error (Works fine in linux but fails in FreeBSD)

We have an application which is currently working on a linux system. Now I am trying to port it to FreeBSD. We are running the application using twistd /usr/bin/twistd -y $TACFILE --rundir $RUNDIR ...
0
votes
1answer
95 views

What's wrong with importing a python module without the full package name?

At http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Imports, it suggests: Even if the module is in the same package, do not directly import the module without the full package name. ...
0
votes
4answers
2k 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.