module object has no attribute after using different version of Python

13 vues
Accéder directement au premier message non lu

Prithviraj Mitra

non lue,
5 août 2017, 16:01:0105/08/2017
à 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

non lue,
6 août 2017, 10:10:5006/08/2017
à 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
Répondre à tous
Répondre à l'auteur
Transférer
0 nouveau message