Django Framework MySQL Database
python3 -m venv venv_l ---> venv_l = virtual environment variable
---------------------------VERSIONS---------------------------------- Successfully installed: asgiref-3.8.1 django-5.0.3 sqlparse-0.4.4 Python 3.12.2 pymysql-1.1.0 cffi-1.16.0 cryptography-42.0.5 pycparser-2.21
pip install cryptography
------------MYSQL------------- pip3 install mysqlclient -> X pip install pymysql -> correct
inside "__init__" file in main project
'''
import pymysql
pymysql.install_as_MySQLdb()
'''