Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
251 views

What is the most pythonic way to import modules in python

Can anyone suggest me what is the most pythonic way to import modules in python? Let me explain - i have read a lot of python code and found several different ways of how to import modules or if to ...
6
votes
3answers
286 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 ...
5
votes
3answers
125 views

Does importing a module (but not using it) decrease performance in Python?

I'm running a website using Django, and I import ipdb at the beginning of almost all of my scripts to make debugging easier. However, most of the time I never use the functions from the module (only ...
5
votes
1answer
526 views

ImportError: No module named ***** in python

I am very new to python, about one month, and am trying to figure out how the importing works in python. I was told that I can import any 'module' that has Python code in it. So I am trying to import ...
4
votes
2answers
55 views

Python conditional 'module object has no attribute' error with personal package distinct from circular import issue

I'm getting a 'module object has no attribute ..." error when trying to use a package heirarchy I created. The error is reminiscant of the error you get when there is a circular import (i.e. module a ...
4
votes
1answer
78 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 ...
4
votes
1answer
71 views

Python - Dynamic class import

I have the following folder structure: - MyProject - App1 - some_module1.py - some_module2.py - App2 - some_other_module1.py - some_other_module2.py Inside ...
4
votes
4answers
269 views

Python - optimize by not importing at module level?

In a framework such as Django, I'd imagine that if a user lands on a page (running a view function called "some_page"), and you have 8 imports at the top of module that are irrelevant to that view, ...
3
votes
1answer
71 views

Python/Django: import weirdness

I've the following project setup .... ├── lira │   ├── __init__.py │   ├── admin.py │   ├── ajax.py │   ├── authentication.py │   ├── context_processors.py │   ├── fencoder │   │   ├── __init__.py │  ...
3
votes
2answers
161 views

What is the best way to deal with import cycle in Python?

In our projects we have level 'controls' with the following modules: 'grid', 'gridcell', 'combo' and etc. Grid module imports gridcell module since grid consists of cells, while any cell can contain ...
3
votes
2answers
281 views

How to debug Python import failure

I have a directory structure: network/__init__.py network/model.py network/transformer/__init__.py network/transformer/t_model.py both __init__.py files have appropriate __all__ = [ "model", ...
3
votes
1answer
185 views

Is it possible for my Mercurial hook to call code from another file?

I have a hook function named precommit_bad_branch which imports hook_utils. When invoking precommit_bad_branch via a commit I get the following error message: error: precommit.branch_check hook ...
3
votes
5answers
581 views

Properly importing modules in Python

How do I set up module imports so that each module can access the objects of all the others? I have a medium size Python application with modules files in various subdirectories. I have created ...
2
votes
1answer
127 views

Python Strategy pattern: Dynamically import class files

I am trying to build a software package that fixes arbitrary data inconsistencies in one of my databases. My design includes two classes - Problem and Fix. The problems are SQL queries stored as .cfg ...
2
votes
1answer
137 views

Python/Django is importing the wrong module (relative when it should be absolute)

I'm using Django 1.2 pre-alpha and Python 2.4. Yeah, I know, but I'm stuck with it. We can't upgrade at the moment and I doubt that's the answer anyway. I've got two template tag libraries, foo and ...
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
4answers
390 views

Python access parent object instances

I'm currently trying to write a multiple-file Python (2.6.5) game using PyGame. The problem is that one of the files, "pyconsole.py", needs to be able to call methods on instances of other objects ...
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
4answers
105 views

How to add to beginning Python path in bash

Here is my .bash_profile PYTHONPATH=".:/home/miki725/django/django:$PYTHONPATH" export PYTHONPATH So then I open python however the directory I add in .bash_profile is not the first one: Python ...
1
vote
1answer
94 views

ImportError; and zipimporters disappeared from pkgutil.iter_importers()

I have a Django instance that's mysteriously incapable of import memcache ... after (some unknown event that happens after a period of running just fine.) LAMP configuration: RHEL 5.7 Apache 2.2.3 ...
1
vote
2answers
78 views

How do I include 3rd party modules with my python scripts?

I've started using Python to automate repetitive tasks I have at work, and often need to integrate references to third party modules into my scripts. How can I include these files with my scripts ...
1
vote
3answers
113 views

Python: Use an import done inside of a class in a function

Can anyone explain how to make the following example work? Since several functions inside of the class will use the same function from platform I thought it would be better to import it right inside ...
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
2answers
282 views

Why does my python not add current working directory to the path?

I keep seeing sites mentioning that the directory that you execute 'python ' get added to the python path. For example on http://www.stereoplex.com/blog/understanding-imports-and-pythonpath, the ...
1
vote
2answers
496 views

import python file [closed]

Possible Duplicate: Python package structure Hello, I'm looking to import a python file that I have in a sub-directory that is below the root of my main file. e.g. import ...
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
3answers
131 views

Python: Modifying a variable in a module imported using from … import *

Consider the following code: #main.py From toolsmodule import * database = "foo" #toolsmodule database = "mydatabase" As it seems, this creates one variable in each module with different content. ...
1
vote
2answers
68 views

Using a variable for an import

I have the following pattern: databasename = "mydatabase" import databasefunctions and in databasefunctions I have the following method. def checkStatusOfDatabase(database=databasename): I ...
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
2answers
105 views

Python - How to PYTHONPATH with a complex directory structure?

Consider the following file\directory structure: project\ | django_project\ | | __init__.py | | django_app1\ | | | __init__.py | | | utils\ | | | | __init__.py | | | | bar1.py | | ...
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
2answers
31 views

Run python script from PyCharm. Import in Pycharm

It seems like Pycharm 1.5.3 makes some magic, or I missed something. I have following file structure: /sp /sp/tools.py /sp/test/main.py Files contain following code main.py: __author__ = ...
0
votes
0answers
37 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
20 views

Import error with django/python script

I am trying to run this script that will generate some fake data for my model but I am running into an import error : ImportError: No module named apps.photos.models This is my project setup: ...
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
31 views

Default configuration in python/django

I'm working on a reusable django app, which I want to make configurable by GLOBAL VARIABLES in settings.py. I want these to be optional so I've provided default values inside my app in a conf.py ...
0
votes
2answers
46 views

Why is Python more strict with circular imports when using from-imports?

I know that Python discourages any situation which can get you into a circular import. But I wanted understand the Python internals of why from-imports are seemingly arbitrarily less forgiving than ...
0
votes
2answers
118 views

Force python to use an older version of module (than what I have installed now)

My employer has a dedicated module1 we use for internal unit / system test; however, the author of this module no longer works here and I have been asked to test some devices with it. The problem is ...
0
votes
0answers
36 views

In python,how to import a specific file, when two diff dir have the same file names

I have two files with same name in diff dir(dir1 and Dir2) I have another file main_test.py in Dir2 test_py python_test test1.py python_test1 test1.py main_test.py In main_test.py i ...
0
votes
1answer
129 views

from a import b in python 2.4

Need help with import in python 2.4 The problem statement is: src\ __init__.py main.py dirFoo\ __init__.py Foo.py dirBar\ __init__.py Bar.py I need to access main.py in Foo.py The version of ...
0
votes
1answer
192 views

Importing a Python Module inside Custom Django Templatetags

I'm using virtualenv with my Python Django installation. Here is my directory structure: project/ dev_environ/ lib/ python2.6/ site-packages/ ...
0
votes
3answers
363 views

Python import errors - finding more specific information

One thing I've found really frustrating is that when you trap an import error you're really going down a deep rabbit hole right away. Take Django for instance (in manage.py): try: import ...
0
votes
1answer
90 views

ImportError importing forms.py into models.py

I would really like to make a form instance a model attribute so that i have access to the form from the template through an object that I have handy. When I try to import import any form into ...
0
votes
1answer
373 views

Strange django admin error

I've just fired my project clean on new machine and when entering admin I got the following error, which indicates some syntax error in forms.py ( I believe admin's forms). Anyone seen anything like ...
0
votes
4answers
126 views

What are efficient practices for importing python modules?

I'm writing some views in Django, the are just python functions really. I'm curious as to whether there's a better way for me to arrange my files. It this... import a, b def x(request): return ...
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
2answers
351 views

Import fails with a strange error

I get: TemplateSyntaxError at /blog/post/test Caught NameError while rendering: global name 'forms' is not defined for this code: forms.py from dojango.forms import widgets from ...
0
votes
1answer
94 views

Django startup importing causes reverse to happen

This might be an isolated problem, but figured I'd ask in case someone has thoughts on a graceful approach to address it. Here's the setup: -------- views.py -------- from django.http import ...
0
votes
3answers
386 views

python importing relative modules

I have the Python modules a.py and b.py in the same directory. How can I reliably import b.py from a.py, given that a.py may have been imported from another directory or executed directly? This module ...
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.