Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 476 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 476 Bytes

Python-Flask

Python-Flask app using Flask render and templates while fetching and storing data in MySQL database.

Modules

pip install Flask pip install flask-mysql Ref: https://flask-mysql.readthedocs.io/en/latest/#

pip install Flask-WTF

Set Up

MySQL Script

CREATE TABLE articles_app.users(id integer AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100), email VARCHAR(100), username VARCHAR(30), password VARCHAR(100), register_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP);