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
This error also appears if SomeView doesn't exist in views.py and you do this:
from someapp import views urlpatterns = [ path('api/someurl/', views.SomeView.as_view(), name="someview"), ]
So make sure all Views you use in urls.py exist in views.py