django
Installation
SKILL.md
Django
Django is a high-level Python web framework that encourages rapid development. It includes an ORM, template engine, admin site, form handling, authentication, and security middleware out of the box.
Installation
# Install Django and start a project
pip install django
django-admin startproject myproject .
python manage.py startapp core
Project Structure
# Standard Django project layout
myproject/
├── manage.py
Related skills