Python Flask
https://flask.palletsprojects.com/en/2.2.x/installation/
Create an environment
C:\flask_dev>py -3 -m venv venv
Activate the environment
C:\flask_dev>venv\Scripts\activate
Install Flask
venv C:\flask_dev>pip install Flask
C:\flask_dev\flaskreact\app.py
Install requirements
Flask-SQLAlchemy
Flask-SQLAlchemy is an extension for Flask that adds support for SQLAlchemy to your application.
https://flask-sqlalchemy.palletsprojects.com/en/3.0.x/
(venv) PS C:\flask_dev\flaskreact>pip install -U Flask-SQLAlchemy
C:\flask_dev\flaskreact\app.py
Flask + marshmallow for beautiful APIs
https://pypi.org/project/flask-marshmallow/
(venv) PS C:\flask_dev\flaskreact>pip install flask-marshmallow
Flask-Cors
A Flask extension for handling Cross Origin Resource Sharing (CORS), making cross-origin AJAX possible.
https://pypi.org/project/Flask-Cors/
(venv) PS C:\flask_dev\flaskreact>pip install -U flask-cors
C:\flask_dev\flaskreact\app.py
#C:\flask_dev\flaskreact\app.py from flask import Flask, jsonify from flask_cors import CORS #ModuleNotFoundError: No module named 'flask_cors' = pip install Flask-Cors from flask_marshmallow import Marshmallow #ModuleNotFoundError: No module named 'flask_marshmallow' = pip install flask-marshmallow https://pypi.org/project/flask-marshmallow/ from models import db, Countries app = Flask(__name__) CORS(app, supports_credentials=True) #app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///flaskdb.db' # Databse configuration mysql Username:password@hostname/databasename app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://root:''@localhost/flaskreact' db.init_app(app) with app.app_context(): db.create_all() ma=Marshmallow(app) class CountriesSchema(ma.Schema): class Meta: fields = ('ID','countryName') countries_schema = CountriesSchema(many=True) @app.route("/") def hello_world(): return "Hello, World!" @app.route('/listall',methods =['GET']) def listall(): all_countries = Countries.query.all() results = countries_schema.dump(all_countries) return jsonify(results)C:\flask_dev\flaskreact\models.py
#C:\flask_dev\flaskreact\models.py from flask_sqlalchemy import SQLAlchemy db = SQLAlchemy() class Countries(db.Model): __tablename__ = "countries" ID = db.Column(db.Integer, primary_key=True) countryName = db.Column(db.String(120), index=True, unique=True)run (venv) C:\flask_dev\flaskreact>flask run
http://127.0.0.1:5000/listall
React JS
https://create-react-app.dev/
Create Project
C:\react-js>npx create-react-app myreactdev
Run
C:\react-js\myreactdev> npm start
C:\react-js\myreactdev\src\App.js
//C:\react-js\myreactdev\src\App.js import React, { useState, useEffect } from "react"; import "./App.css"; function App() { const [allcountry, setAllcountry] = useState([]); const [filterresult, setFilterresult] = useState([]); const [serachcountry, setSearchcountry] = useState(""); const handlesearch = (event) => { const search = event.target.value; console.log(search); setSearchcountry(search); if (search !== "") { const filterdata = allcountry.filter((item) => { return Object.values(item) .join("") .toLowerCase() .includes(search.toLowerCase()); }); setFilterresult(filterdata); } else { setFilterresult(allcountry); } }; useEffect(() => { const getcountry = async () => { const getres = await fetch("http://127.0.0.1:5000/listall"); const setcounty = await getres.json(); console.log(setcounty); setAllcountry(await setcounty); }; getcountry(); }, []); return ( <div className="container"> <div className="row"><p><h3>ReactJS Python Flask AutoComplete Textbox | Filter Search | SQLAlchemy Mysql</h3></p> <div className="col-md-6 mb-3 mt-3"> <input type="text" className="form-control" placeholder="Enter Keyword" onChange={(e) => { handlesearch(e); }} /> <table className="table table-bordered table-striped"> <thead> <tr> <th>Country ID </th> <th>Country Name</th> </tr> </thead> <tbody> {serachcountry.length > 1 ? filterresult.map((filtercountry, index) => ( <tr key={index}> <td> {filtercountry.ID} </td> <td> {filtercountry.countryName} </td> </tr> )) : allcountry.map((getcon, index) => ( <tr key={index}> <td> {getcon.ID} </td> <td> {getcon.countryName} </td> </tr> ))} </tbody> </table> </div> </div> </div> ); } export default App;react-js\myreactdev\public\index.html
//react-js\myreactdev\public\index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="theme-color" content="#000000" /> <meta name="description" content="Web site created using create-react-app" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <title>React App</title> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"/> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> </body> </html>Run C:\react-j\myreactdev>npm start
http://localhost:3000/