Recent Posts

Flask vs Django

2 minute read

Introduction Flask and Django are two popular web development frameworks for Python. While they share many similarities, there are some key differences betwe...

Dump MySQL query to CSV

less than 1 minute read

mysql -e "select * from table;" -h HOST --port=PORT -u USER -p DATABASE > mydumpfile.csv

Python: Creating a virtual environment

less than 1 minute read

virtualenv is used to manage Python packages for different projects. Using virtualenv allows you to avoid installing Python packages globally which could bre...