A python package that pulls survey data from Qualtrics and transforms it in to a multi-table relational database (Surveys, Blocks, Questions, Choices, Answers, Respondents, Responses).
To get started, download the files and run setup.py to configure the connections to both MySQL and Qualtrics.
If using as a library, here is an example of how to run qual2db:
import qual2db
s = qual2db.survey('{your survey id}')
s.update_sql()
See the wiki for complete documentation.