Fix Python – Sending data from HTML form to a Python script in Flask
I have the code below in my Python script:
def cmd_wui(argv, path_to_tx):
“””Run a web UI.”””
from flask import Flask, flash, jsonify, render_template, request
import webbrowser
app = Flask(__name__)
@app.route(‘/tx/index/’)
def index():
“””Load start page where you select your project folder
or load histo….