I am new to django and python. During url mapping to views i am getting following error: TypeError: view must be a callable or a list/tuple in the case of include().
In 1.10, you can no longer pass import paths to url(), you need to pass the actual view function:
url()
from posts.views import post_home urlpatterns = [ ... url(r'^posts/$', post_home), ]