Last week we released Connector/Python v2.0 (alpha); today we publish the source on GitHub. Yes, we are using Git internally and are now able to push it out on each release. Previous versions are still available through LaunchPad.
Here is the full process to get Connector/Python installed in a virtual environment. You’ll need Git installed of course.
shell> git clone https://github.com/oracle/mysql-connector-python.git cpy shell> virtualenv ENVCPY shell> source ENVCPY/bin/activate (ENVCPY)shell> cd cpy (ENVCPY)shell> python setup.py install (ENVCPY)shell> python >>> import mysql.connector >>> mysql.connector.__version__ …[Read more]