https://python-guide-es.readthedocs.io/es/guide-es/dev/virtualenvs.html
Create an environment
ednalan@Cairocoders myapp % pip install virtualenv
ednalan@Cairocoders myapp % pip install virtualenv
Activate the environment
ednalan@Cairocoders myapp % source venv/bin/activate
(venv) ednalan@Cairocoders myapp %
Install Flask
https://pypi.org/project/Flask/
(venv) ednalan@Cairocoders myapp % pip install -U Flask
(venv) ednalan@Cairocoders myapp % flask run
Install requirements
pip install -U flask-cors
https://pypi.org/project/Flask-Cors/
app.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | //app.py from flask import Flask, jsonify from flask_cors import CORS #pip install -U flask-cors https: //pypi.org/project/Flask-Cors/ # app instance app = Flask(__name__) CORS(app) @app.route( "/" ) def hello(): return "Hello, World!" # /api/user @app.route( "/api/user" , methods=[ 'GET' ]) def return_home(): return jsonify({ 'name' : [ 'cairocoders' , 'clydey' , 'caitlyn' ], 'email' : [ 'cairocoders@gmail.com' , 'clydey@gmail.com' , 'caitlyn@gmail.com' ] }) if __name__ == "__main__" : app.run(debug=True, port=8080) |
https://nextjs.org/docs/getting-started/installation
app\page.tsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | //app\page.tsx "use client" ; import React, { useEffect, useState } from "react" ; export default function Home() { const [message, setMessage] = useState( "Loading" ); const [userData, setUSerData] = useState([]); .then((response) => response.json()) .then((data) => { console.log(data); setMessage(data.message); setUSerData(data.name) }); }, []); return ( <main className= "flex min-h-screen flex-col items-center justify-between p-24" > <h3>Next js Python Flask</h3> <div>{message}</div> {userData.map((user, index) => ( <div key={index}>{user}</div> ))} </main> ); } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | "use client" ; import React, { useEffect, useState } from "react" ; export default function Home() { const [userData, setUSerData] = useState([]); useEffect(() => { fetchData(); }, []) const fetchData = async () => { try { console.log(result.data); setUSerData(result.data.name) } catch (err) { console.log( "somthing Wrong" ); } } return ( <main className= "flex min-h-screen flex-col items-center justify-between p-24" > <h3>Next js Python Flask</h3> {userData.map((user, index) => ( <div key={index}>{user}</div> ))} </main> ); } |