using Mysql and SqlAlchemy in Pyramid Framework
Pyramid Framework comes with a sample tutorial of sql alchemy that uses sqlite. The problem is that i want to use mysql so i change this sqlalchemy.url = sqlite:///%(here)s/tutorial.db Into this sqlalchemy.url = mysql://root:22password@localhost/alchemy when i try to run ../bin/pserve development.ini --reload It gives me the following error File "build/bdist.linux-i686/egg/sqlalchemy/connectors/mysqldb.py", line 52, in dbapi ImportError: No module named MySQLdb I understand that i should include the dependecies of my app in setup.py but i don't know what to include right now some help please