ondiekelijah / Exploring-Flask_SQLAlchemy-Queries

Exploring Flask-SQLAlchemy often used Queries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Exploring Flask-SQLAlchemy often used Queries

1 .Set Up a directory and Create a virtual environment πŸ“Œ

Windows

git clone https://github.com/Dev-Elie/Exploring-Flask_SQLAlchemy-Queries.git
cd Exploring-Flask_SQLAlchemy-Queries
py -3 -m venv venv

macOS/Linux

git clone https://github.com/Dev-Elie/Exploring-Flask_SQLAlchemy-Queries.git
cd Exploring-Flask_SQLAlchemy-Queries
python3 -m venv venv

2 .Activate the environment πŸ“Œ

Windows

venv\Scripts\activate

macOS/Linux

. venv/bin/activate or source venv/bin/activate

3 .Install Flask-SQLAlchemy πŸ“Œ

Applies for windows/macOS/Linux

pip install Flask-SQLAlchemy

4. Execute python script to create a simple database πŸ“Œ

For linux and macOS

python create.py

Open a python shell on your machine and proceed with the exploring queries in the article


Happy Learning πŸ‘

dev_elie

About

Exploring Flask-SQLAlchemy often used Queries

License:MIT License


Languages

Language:Python 100.0%