Hello, Python 3 Flask Student Registration CRUD System Using MySQL Database in Browser We are going to know the vibrancy of. There are many interesting facts in this article. Let’s move on to the articles
Flask-SQLAlchemy is the Flask extension library that we will use to add SQLAlchemy to the Flask project. SQLAlchemy is an object-related graph that provides access to SQL databases via Python objects.

Python 3 Flask Student Registration CRUD System Using MySQL Database in Browser
pip install flask
After this download xammp
software to install the mysql
database inside your environment and turn on the apache server
and mysql
database
Now go to localhost/phpmyadmin
and create a new database by the name crud
and then inside it go to the import
section and upload this file crud.sql
crud.sql
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 09, 2018 at 05:51 AM
-- Server version: 5.7.14
-- PHP Version: 7.0.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `crud`
--
-- --------------------------------------------------------
--
-- Table structure for table `students`
--
CREATE TABLE `students` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`phone` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `students`
--
INSERT INTO `students` (`id`, `name`, `email`, `phone`) VALUES
(3, 'Parwiz', 'parwiz.f@gmail.com', '009378976767'),
(4, 'John Doe', 'johndoe@gmail.com', '999999999'),
(5, 'Karimja', 'ka@gmail.com', '7333392'),
(6, 'Jamal', 'ja@gmail.com', '3434343'),
(7, 'Nawid', 'na@gmail.com', '343434'),
(8, 'Tom Logan', 'Tom@gmail.com', '7347374347'),
(12, 'Tom Logan', 'tom@gmail.com', '11111111111'),
(13, 'Fawad', 'fa@gmail.com', '347374837483'),
(14, 'Wahid', 'wa@gmail.com', '4354354345');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `students`
--
ALTER TABLE `students`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
After this make an __init__.py
file inside the root directory and copy paste the following code
__init__.py
from flask import Flask, render_template, request, redirect, url_for, flash
from flask_mysqldb import MySQL
app = Flask(__name__)
app.secret_key = 'many random bytes'
app.config['MYSQL_HOST'] = 'localhost'
app.config['MYSQL_USER'] = 'root'
app.config['MYSQL_PASSWORD'] = ''
app.config['MYSQL_DB'] = 'crud'
mysql = MySQL(app)
@app.route('/')
def Index():
cur = mysql.connection.cursor()
cur.execute("SELECT * FROM students")
data = cur.fetchall()
cur.close()
return render_template('index2.html', students=data )
@app.route('/insert', methods = ['POST'])
def insert():
if request.method == "POST":
flash("Data Inserted Successfully")
name = request.form['name']
email = request.form['email']
phone = request.form['phone']
cur = mysql.connection.cursor()
cur.execute("INSERT INTO students (name, email, phone) VALUES (%s, %s, %s)", (name, email, phone))
mysql.connection.commit()
return redirect(url_for('Index'))
@app.route('/delete/<string:id_data>', methods = ['GET'])
def delete(id_data):
flash("Record Has Been Deleted Successfully")
cur = mysql.connection.cursor()
cur.execute("DELETE FROM students WHERE id=%s", (id_data,))
mysql.connection.commit()
return redirect(url_for('Index'))
@app.route('/update',methods=['POST','GET'])
def update():
if request.method == 'POST':
id_data = request.form['id']
name = request.form['name']
email = request.form['email']
phone = request.form['phone']
cur = mysql.connection.cursor()
cur.execute("""
UPDATE students
SET name=%s, email=%s, phone=%s
WHERE id=%s
""", (name, email, phone, id_data))
flash("Data Updated Successfully")
mysql.connection.commit()
return redirect(url_for('Index'))
if __name__ == "__main__":
app.run(debug=True)


Read Also: Python 3 Flask GitHub API Example to Search Information by Username in Browser
Final Words
We hope that you and your doubts have been resolved through the article Python 3 Flask Student Registration CRUD System Using MySQL Database in Browser. And if you have any doubts let us know via the comment box. We cater to your doubts. And if you liked this article, we ask you to share it with your friends.