近一年来,我一直在遇到同样的问题。我总是想办法解决它,但我厌倦了寻找解决方法。
我需要的是在服务器上运行 python 脚本的网页(最好是 HTML,而不是 PHP 或 ASP)上创建一个按钮。我还希望能够让这个按钮将信息从表单发送到脚本。
我需要在本地主机上并通过托管在 Amazon Cloud 上的 Web 服务来执行此操作。我将无法在 Amazon Cloud 服务上安装任何额外的东西,例如 PHP 或 CGI。
我真的很想要一个简单的解决方案,我是 python 专家,我可以编写吹口哨的网页,但我就是找不到一个简单的解决方案来解决这个问题。
我理想的解决方案是要标记的邮件:
<a href="mailto:someone@example.com?Subject=Hello%20again">Send Mail</a>
除了:
<a href="myscript.py?Subject=1234">Run Script</a>
现在我非常怀疑这样的解决方案是否存在,但我可以梦想成真。
我试图运行的脚本:
- 返回用户的唯一 ID
- 将 ID 发送到 GIS 程序,该程序根据 ID 创建地图(ID 选择地图的区域)
- 然后将地图导出为 PNG,写入 HTML 文档,然后在新选项卡中为用户显示。
编辑 - - - - - - - - - - - - - -
感谢@Ketouem 的回答,我能够找到解决问题的好方法。我将在这里发布一些代码,以便其他人可以受益。确保你下载了 Python 的 Bottle Module,它很棒。
# 01 - Import System Modules
from bottle import get, post, request, Bottle, run, template
# 02 - Script Variables
app = Bottle()
# 03 - Build Temporary Webpage
@app.route('/SLR')
def login_form():
return '''<form method="POST" action="/SLR">
Parcel Fabric ID: <input name="UID" type="text" /><br />
Save Location: <input name="SaveLocation" type="text" value="D:/Python27/BottleTest/SLR_TestOutputs"/><br />
Air Photo On: <input name="AirPhoto" type="checkbox"/><br />
Open on Completion: <input name="Open" type="checkbox"/><br />
Scale: <input name="Scale" type="text" value="10000"/><br />
<input type="submit" />
</form>'''
# 04 - Return to GIS App
@app.route('/SLR', method='POST')
def PHPH_SLR_Script():
# I won't bother adding the GIS Section of the code, but at this point it send the variables to a program that makes a map. This map then saves as an XML and opens up in a new tab.
# 04 - Create and Run Page
run(app, host='localhost', port=8080)