Django Apps — a practical guide to Django apps with clear examples you can reuse in real projects.
Python Tutorial Series (73/95). Prefer one article? Read the complete Python tutorial.
Short description
Projects contain apps (blog, accounts, shop). Register apps in `INSTALLED_APPS`.
Create an app
python manage.py startapp blog
# add 'blog' to INSTALLED_APPS in settings.py