module object has no attribute after using different version of Python

13 views
Skip to first unread message

Prithviraj Mitra

unread,
Aug 5, 2017, 4:01:01 PM8/5/17
to Django users
I have both versions python 2.7 and 3.4 installed. I am using some code which is developed under 2.7 but I am using under 3.4. So after compiling using the following command

python manage.py runserver

I get the following error -

 File "C:\pyprojects\focus\site\general\forms.py", line 26, in Meta model = models.UserProfile AttributeError: 'module' object has no attribute 'UserProfile'

As models.py and forms.py is under same directory(general) so I have imported the model in forms.py in this way

from .models import models

Now in models.py I have defined the class

class UserProfile(models.Model, HashedPk): user = models.OneToOneField(User, unique=True) is_pro = models.BooleanField(default=False, blank=True) ......................................................

In forms.py the code is

class UserProfileForm(forms.ModelForm): class Meta: model = models.UserProfile .....................

Is there any special way to call the model in python 3.4.

Any help is highly appreciated.

lemme smash

unread,
Aug 6, 2017, 10:10:50 AM8/6/17
to Django users
it's a very strange way of import. if your forms and models are in the same python module, you can do
from . import models
Reply all
Reply to author
Forward
0 new messages