有没有一种方法可以从Flask(python)服务器提供现有的Perl CGI脚本

时间:2019-02-11 19:08:24

标签: python perl flask cgi

典型的Flask脚本如下:

from flask import Flask, render_template
app=Flask(__name__)
@app.route('/')
def home():
    return render_template('index.html')

我的问题不是'index.html',而是如何在perl中使用CGI脚本'SRL.pl'。

0 个答案:

没有答案