2

How can I access MySQL with Python on windows environment ?

I took a look to MySQLdb but in the README says:

"I don't do Windows. However if someone provides me with a package for Windows, I'll make it available."

So is there easy way to access MySQL on Windows or I should install Red Hat & go from there?

jsalonen
  • 29,593
  • 15
  • 91
  • 109
Alex Kolarski
  • 3,255
  • 1
  • 25
  • 35
  • You might want to look at this post: http://stackoverflow.com/questions/645943/mysql-for-python-in-windows – Dodo Jun 06 '11 at 07:47

1 Answers1

5

The README doesn't mean MySQLdb isn't available for Windows. It only means that the library's maintainer doesn't provide binaries for Windows.

You can still get these binaries for Windows either by 1) compiling them yourself or 2) getting them compiled from some third party.

I suggest you to do the latter:

jsalonen
  • 29,593
  • 15
  • 91
  • 109