A framework can be a great way to allow you to spend more time on the actual application or web site and less time on standard tasks. It can also greatly reduce the amount of custom code needed. Django is one of the best known web frameworks for Python, and the good news is that it works out of the box with MySQL Server 8 and MySQL Connector/Python 8. This blog will look at how to use Django with MySQL 8.
There actually is very little to get Django to work with MySQL 8.
Just install it, configure Django to use MySQL Connector/Python
as a backend, and that’s it. From the Django point of view, you
just have to configure the database option in
settings.py
to use MySQL Connector/Python and your
database settings, for example:
DATABASES = { …[Read more]