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