from django.conf import settings
from django.conf.urls import static
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
이 부분에서
TypeError: 'module' object is not callable
에러가 뜬다면
from django.conf.urls import static 을
from django.conf.urls.static import static
로 변경해주세요