Download historical financial data from Yahoo! using Python

Update! I’ve extended and polished the library and published it as pyyahoofinance at github. Feel free to critizise my coding style and laugh at me, and of course to use it and/or contribute. I’m working on a project where I need to analyze the ups and downs of different stock values along the history and […]

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 […]