I have installed Python version 3.4.0 and I would like to do a project with MySQL database. I downloaded and tried installing MySQL
Maybe you can use a work around and try something like:
import datetime #import mysql import MySQLdb conn = MySQLdb.connect(host = '127.0.0.1',user = 'someUser', passwd = 'foobar',db = 'foobardb') cursor = conn.cursor()