Python Flask Dev Environment on Manjaro Linux

Python Flask is a small web development framework written in Python. It allows you to create web applications quickly and easily by providing useful tools and features. You can use it to create a website, a web service, or even a simple web page. It’s easy to learn and use, making it a popular choice for beginners and experienced developers alike. Personally, I love Flask. You can quickly spin up a website using the Jinja2 template engine or create a web API to query a backend database or other web API....

01-27-2023 · Adam

MySQL and Flask Tutorial

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 for Python Flask To install the required Python package for working with a MySQL database in Flask, we will use “pip”....

02-26-2021 · Adam

3 Easy Steps: Install VirtualEnv on Arch Linux for Python

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 of a package and project B that needs a different version. By using virtualenv, you can have those specific packages installed for each project and keep them separated....

02-24-2021 · Adam