Tag Archive for 'databases'

MySQLdb – accessing MySQL databases from Python

MySQL is a popular open-source database engine, and Python interfaces quite nicely with MySQL with the MySQLdb package. For more on why you would want to use a database for your data, check out this post. Here I’ll show you how to connect to your existing MySQL database with Python. Continue reading ‘MySQLdb – accessing MySQL databases from Python’

Why should I use a database for my data?

Quick answer: when you have large amounts of inter-related data.

Long answer: Continue reading ‘Why should I use a database for my data?’