Combine similar article

This commit is contained in:
2024-01-02 15:00:07 +01:00
parent fff1c94a3d
commit ae1c1902da
15 changed files with 726 additions and 39 deletions

24
pyth/web-server.py Normal file
View File

@@ -0,0 +1,24 @@
from flask import Flask , render_template , jsonify
from vectData import get_data
from flask_cors import CORS
app = Flask(__name__)
CORS(app)
@app.route('/')
def index() :
return render_template("index.html")
@app.route('/article/one')
def articleone():
return render_template("one.html")
@app.route('/article/two')
def articletwo():
return render_template("two.html")
app.run(debug=True)