使用flask在Python中的庫,你可以實現這一點。 請記住將您的HTML頁面存儲到您正在運行python腳本的內部名爲「templates」的文件夾中。
讓你的文件夾看起來像
- 模板(它將包含HTML文件的文件夾)
- 您的Python腳本
這是你的Python腳本的一個小例子。這只是檢查剽竊。
from flask import Flask
from flask import request
from flask import render_template
import stringComparison
app = Flask(__name__)
@app.route('/')
def my_form():
return render_template("my-form.html")
@app.route('/', methods=['POST'])
def my_form_post():
text1 = request.form['text1']
text2 = request.form['text2']
plagiarismPercent = stringComparison.extremelySimplePlagiarismChecker(text1,text2)
if plagiarismPercent > 50 :
return "<h1>Plagiarism Detected !</h1>"
else :
return "<h1>No Plagiarism Detected !</h1>"
if __name__ == '__main__':
app.run()
這是用來
<!DOCTYPE html>
<html lang="en">
<body>
<h1>Enter the texts to be compared</h1>
<form action="." method="POST">
<input type="text" name="text1">
<input type="text" name="text2">
<input type="submit" name="my-form" value="Check !">
</form>
</body>
</html>
THID HTML文件的一小模板是一個小一點的方式,通過它可以實現比較兩個字符串的一個簡單的任務,可以很容易地成型,以適應你的要求
這是python不是php,你必須設置python web框架e,g,webpy或者django等,並且配置appache和mod_python。 –
嘗試威士忌! :D「WSGI」(Web服務器網關接口)。 – Arunmu
可以使用Pyjamas和Skulpt等框架在網頁(客戶端)上運行Python。 –