March 2020
Intermediate to advanced
608 pages
17h 17m
English
Let's create a music app that we'll be using throughout this chapter:
# myproject/settings/_base.pyINSTALLED_APPS = [ # … "myproject.apps.core", "myproject.apps.music",]
# myproject/apps/music/models.pyimport osimport uuidfrom django.urls import reversefrom django.utils.translation import ugettext_lazy as _from django.db import modelsfrom django.utils.text import slugifyfrom myproject.apps.core.models ...