SQLAlchemy – turn Relational Databases into Python Gold

Last week I started a project using Relational Databases for Zassh.com. At first, I tried to construct the SQL queries myself using string joins, tuples and so but soon I realized the problems using this method: It’s error-prone. Highly vulnerable to SQL injection attacks. Computers write SQL better than humans. It made me remember my […]