1
I have the following problem between two apps, in which I call a model from an app (app1) in a view from another app (app2)
Projeto
├ APP1
└ APP2
View from APP2:
from projeto.app1.models import ObjetoX
objeto_x = ObjetoX(parm=1)
In doing so arises the following error:
Modulenotfounderror: No module named 'project.app1'
IDE: Pycharm Operating System: Windows 10
the file name is uppercase or minuscule?
– Tmilitino
Rodrigo, I did not change the name of the folders because it is relevant to the answers..
– fernandosavio
Your apps are listed in Settings.py?
– Marlysson