Top "Mysql-python" questions

Use this tag for questions about the MySQL-Python database connector library (MySQLdb).

Using PIP in a virtual environment, how do I install MySQL-python

When I'm in my virtual environment, I attempt to run: pip install MySQL-python This didn't work, so I tried downloading …

python ubuntu virtualenv pip mysql-python
Reconnecting MySQL on timeout

I have a Python program which runs on background for weeks, and does database queries every once in a while. …

python mysql orm mysql-python peewee
Fastest way to load numeric data into python/pandas/numpy array from MySQL

I want to read some numeric (double, i.e. float64) data from a MySQL table. The size of the data …

python mysql numpy pandas mysql-python
Can't install python mysql library on Mac Mavericks

It was working like a charm before the update from Mountain Lion. After the update it is broken and I …

python django macos osx-mavericks mysql-python
'pip install MySQL-python' fails with 'IndexError'

I'm on OSX El Capitan, using Python 2.7 (Anaconda). Launching the command pip install MySQL-python yields: Collecting MySQL-python Using cached MySQL-python-1.2.5.…

python mysql pip mysql-python osx-elcapitan
How to disable query cache with mysql.connector

I'm connecting mysql on my Kivy application. import mysql.connector con = mysql.connector.Connect(host='XXX', port=XXX, user='XXX', …

python mysql mysql-python kivy
Error installing mysqlclient for python on Ubuntu 18.04

I installed Python 2.7.15rci and Python 3.6.7 on Ubuntu. When i did 'pip list' on virtualenv it returns me: Django (2.1.5) pip (9.0.1) …

mysql django python-3.x pip mysql-python
Python MySQLdb execute table variable

I'm trying to use a variable for a table name. I get the error "... near ''myTable'' at line 1 I must …

python mysql-python