I'd like to use the mysql-connector
library for python 3. I could use pymysql
instead, but mysql-connector
already has a connection pool implementation, while pymysql
doesn't seem to have one. So this would be less code for me to write.
However, when I do
$ pip3 search mysql-connector
I find that these 3 libraries are available:
mysql-connector-repackaged - MySQL driver written in Python
mysql-connector-python-rf - MySQL driver written in Python
mysql-connector-python - MySQL driver written in Python
This is very confusing. Anybody knows which one I should use and why?
Thanks for your help.