I’m writing a (hopefully) small project that would end up being distributed in binary form for Mac OS. I’m looking for a way to deploy the thing with a database that doesn’t have a completely screwed up driver installation process. The mysql driver requires the mysqldb binary driver, which is a bear to compile, as is the postgresql binary driver.
I was looking into pure-python mysql drivers, and I found pymysql. Is there any way to deploy this as the driver? Can anyone suggest a way to easily distribute these things?
sqlite will do the job just fine if it isn’t too database intense. Default support in Django and the best thing: No extra dependencies needed.