MySQL and Flask Tutorial

mysql in python flask

It’s common when building a backend to access a database for API’s and other situations. Luckily with Python, there is an easy module for accessing a MySQL database to make queries. This post will show you how to use MySQL in Flask so that you can use databases in your app easily. Install MySQL Package … Read more

3 Easy Steps: Install VirtualEnv on Arch Linux for Python

python install virtualenv on arch linux

Why Use VirtualEnv? Virtualenv allows you to separate specific packages from one project to another. This guide will show you how to easily install virtualenv on Arch Linux. Using Virtualenv allows for easier collaboration and prevents you from having issues with globally installed python packages. Imagine you have project A that needs a specific version … Read more