I understand circular import error has been asked about a lot but after going through these questions I haven\'t been able to solve my issue. When I try to run my server in Djan
Try changing
urlpatterns = [ url(r'^accounts/', include('accounts_app')), ]
to
urlpatterns = [ url(r'^accounts/', include('accounts_app.urls')), # add .urls after app name ]