awesome-dj
github.com/endormi/awesome-dj βList of reasons why django is awesome for web development & django bootstrap boilerplate
Use this list with your AI agent
Add the Context Awesome MCP server to Claude, Cursor, or any MCP client, then ask:
"Show me what is django π resources from awesome-dj"
Installation instructions βWhat's inside
Articles
Security π
- CSRF (cross site request forgery) protection
Django has built-in protection against most types of CSRF attacks, providing you have
- PBKDF2 password hashing
Django uses the PBKDF2 algorithm with a SHA256 hash, a password stretching mechanism recommended by NIST. Itβs quite secure, requiring massive amounts of computing time to break. Depending on your requirements, you may choose a different algorithm, or even use a custom algorithm to match your specific security situation.
- SQL injection protection
Django uses built-in ORM, thus there is no risk of SQL injection (raw queries are possible, but by no means something that a beginner would need to use).
- XSS (cross-site scripting) protection
Django template system by default escapes variables, unless they are explicitly marked as safe.
Showing a sample of 44 resources. View the full list on GitHub β