An open API service indexing awesome lists of open source software.

https://github.com/thisishaykins/pyflask

A Basic Flask(Python Framework) App with Basic functionalities and usages of it's core libraries
https://github.com/thisishaykins/pyflask

flask flask-application flask-web python python-3 python-script

Last synced: 11 months ago
JSON representation

A Basic Flask(Python Framework) App with Basic functionalities and usages of it's core libraries

Awesome Lists containing this project

README

          

# PyFlask

A Basic Flask(Python Framework) App with Basic functionalities and usages of it's core libraries

## Installation Process
- Clone this Repository
- cd PyFlask into the directory
- Run any python app/file using python "app.py" or python app.py
- Or using the Flask Framework to run app using the process below
- export FLASK_APP=app.py
- flask run
- Enjoy the rest...

## Basic Flask Crud App & Authentication
- Run the python app/file "database.py" using python "database.py" or python database.py
- Or using the Flask Framework to run app using the process below
- export FLASK_APP=database.py
- flask run
- Enjoy a basic crud-auth flask app...