Friday, July 5, 2019

Catalin George Festila: Python 3.7.3 : Use python with MySQL and MariaDB.

If you want to use MariaDB databases with python then you need to install the MySQL. Use the pip tool to install the mysql-connector-python python module: C:\Python373\Scripts>pip install mysql-connector-python Collecting mysql-connector-python ... Installing collected packages: mysql-connector-python Successfully installed mysql-connector-python-8.0.16 The information about python module named

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...