Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have four different files named: main, vector, entity, and physics. I will not post all the code, mostly just the imports, because I think that's where the error is. But if you want, I can post more.

Main:

import time
from entity import Ent
from vector import Vect
#the rest just creates an entity and prints the result of movement

Entity:

from vector import Vect
from physics import Physics
class Ent:
    #holds vector information and id
def tick(self, dt):
    #this is where physics changes the velocity and position vectors

Vector:

from math import *
class Vect:
    #holds i, j, k, and does vector math

Physics:

from entity import Ent
class Physics:
    #physics class gets an entity and does physics calculations on it.

I then run from main.py and I get the following error:

Traceback (most recent call last):
File "main.py", line 2, in <module>
    from entity import Ent
File ".../entity.py", line 5, in <module>
    from physics import Physics
File ".../physics.py", line 2, in <module>
    from entity import Ent
ImportError: cannot import name Ent

I am very new to python, but have worked with C++ for a long time. I am guessing that the cause is from importing entity twice, once in main, and later in physics, but I don't know a workaround. Anyone help?

share|improve this question
What's the directory structure of where they are stored and in which directories? – Ben Feb 12 '12 at 20:56
have a look at this answer for loop-importing in python: stackoverflow.com/questions/7199466/… – Gregor Feb 12 '12 at 20:56
In general, it's not good coding practice to do from <module> import <name>, or from <modlue> import *. Better to import under the module namespace to prevent the chance of overwriting identically named references. – Joel Cornett Feb 12 '12 at 20:57
They are all in the same directory named "code", so no real structure. – jsells Feb 12 '12 at 20:59
So what Joel is saying, I should probably use 'import vector' and use 'x = vector.Vect(0,0,0)'? And perhaps this will clear it up? – jsells Feb 12 '12 at 21:02
show 2 more comments

2 Answers

You have circular dependent imports. physics.py is imported from entity before class Ent is defined and physics tries to import entity that is already initializing. Remove the depency to physics from entity module.

share|improve this answer
   
Ok, I understand that physics is importing entity which in turn imports physics. But, I can't remove the dependency to physics in entity, because class Ent needs to call it to update its position. I also try to import physics at the end of the file or in the constructor, and that only gives me the NameError: name 'x' is not defined. – jsells Feb 12 '12 at 21:13
There is not much you can do than to refactor your code. If you do not refer Physics in Ent constructor definition move mport just under the Ent. If you do, add method like setPhysics to enable import after constructor. – Teemu Ikonen Feb 13 '12 at 7:22
@jsells Since you have worked with C++ "for a long time", you should know that two classes should NEVER be dependant on each other. This is extremely important in C++, and even if it's not the #1 thing in Python, it's still a really good idea to follow this rule. Never have two classes which know each other, ever. If you need help with creating the structure for your classes, post rest of the code too. How exactly (in terms of code) are Entity and Physics linked to each other? I'm sure there's a workaround for what you're trying to do. – Markus Meskanen Apr 18 at 17:03

Your Main should be like this Main:

import time
from entity import *
from vector import *
#the rest just creates an entity and prints the result of movement
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.