Additional resources
The following resources provide additional information related to the topics covered in this chapter:
- Source code for this chapter – https://github.com/PacktPublishing/Django-5-by-example/tree/main/Chapter01
- Python pip installation instructions – at https://pip.pypa.io/en/stable/installation/
- Python venv library for virtual environments – https://docs.python.org/3/library/venv.html
- Django installation options – https://docs.djangoproject.com/en/5.0/topics/install/
- Django 5.0 release notes – https://docs.djangoproject.com/en/dev/releases/5.0/
- django-upgrade tool – https://github.com/adamchainz/django-upgrade.
- Django’s design philosophies – https://docs.djangoproject.com/en/dev/misc/design-philosophies/
- Django model field reference – https://docs.djangoproject.com/en/5.0/ref/models/fields/
- Model index reference – https://docs.djangoproject.com/en/5.0/ref/models/indexes/
- Python support for enumerations...