| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- Django==5.0
- mssql-django
- pyodbc==4.0.39
- # For filtering and querying
- django-filter # Simplified filtering
- # For tables/grid view
- django-tables2 # HTML table rendering
- # For exporting to Excel
- openpyxl # Generating Excel files
- # For API development (optional)
- djangorestframework # REST API support
- drf-yasg # Swagger and ReDoc for API documentation (optional)
- # Admin enhancements (optional)
- django-import-export # Export/import for admin
- # Authentication enhancements (optional)
- django-allauth # For user authentication (optional)
- # Debugging and performance
- django-debug-toolbar # Debugging SQL queries and performance issues
- # Testing (optional)
- pytest
- pytest-django
- factory-boy # Test data creation
- # Frontend styling (if using Bootstrap or TailwindCSS)
- django-crispy-forms # Styling for forms
- crispy-bootstrap5 # For Bootstrap 5 support (optional)
- # If using TailwindCSS instead of Bootstrap
- django-tailwind # For TailwindCSS integration
- # Cache optimization (optional)
- django-cacheops # Caching ORM QuerySets
|