usermine12
usermine12

Reputation: 77

How do I import this module in python

image showing directories and code

I'mm trying to import views.py I've already tried import personal_portfolio.hello_world.views

Upvotes: 0

Views: 82

Answers (1)

jaswanth
jaswanth

Reputation: 525

If you are using python3 you need to do a relative import instead of absolute so change import views to from . import views

and in django it is always good to import with whole relative path Eg: from hello_world import views

Upvotes: 2

Related Questions