Programming/Django: Difference between revisions
Jump to navigation
Jump to search
Brodriguez (talk | contribs) (Add more references) |
Brodriguez (talk | contribs) (Correct some syntax and formatting) |
||
Line 51: | Line 51: | ||
[Selenium] - For launching browser instances to test actual site page loads. | [https://www.selenium.dev/documentation/ Selenium] - For launching browser instances to test actual site page loads. | ||
selenium | selenium # Support for running UnitTests that directly simulate browser usage. | ||
Latest revision as of 07:27, 12 November 2022
Django is a Python-based web framework.
It's the equivalent to Php's Laravel.
Useful References
Related Packages and Libraries
See also Python Packages and Libraries .
Personally Curated
Django DumpDie (Django DD) - Mostly stable.
django-dump-die # Dump-and-die debugging tool.
Django Expanded Test Cases (Django ETC) - WIP, but basic integration tests are stable at this point.
django-expanded-test-cases # Utilities for easier testing.
Database Connectors
"MySQL Client" MySQL Connector - See also MySQL
mysqlclient # Allows connecting to MySQL databases.
"Psycopg2 Binary" PostgreSQL Connector - See also PostgreSQL
psycopg2-binary # Allows connecting to PostgreSQL databases.
Websockets, Asyncronous Communication, & APIs
channels # Allows using websockets for client-server communication. channels-redis # Supplementary for channels package.
djangorestframework # Allows easy creation of standardized and secure API calls.
Testing Tools
Freeze Gun - Allows for date/time-sensitive testing in cases that would otherwise be difficult to thoroughly test.
freezegun # Allows "freezing" tests to specific datetimes, for consistent checking and output.
Selenium - For launching browser instances to test actual site page loads.
selenium # Support for running UnitTests that directly simulate browser usage.
Utility & Other
django-debug-toolbar # Displays helpful debug-toolbar on side of browser window, after page load.
django-localflavor # Support for locality handling, such as national states/regions.