そのため、python の bottle モジュールを使用して、サーバーでリクエストをリッスンしています。すべてのテストをローカルで実行しましたが、展開の時間になったので、サーバーで実行できません。
from bottle import route, get, post, request, Bottle, run, template
@route('/Request/<UniqueID>') #Build Temporary Webpage
def login_form(UniqueID):
return '''<form method="POST" action="/SLR_Creation">
ID: <input name="UID" type="text" value="''' +UniqueID+ '''" /><br />
Scale: <input name="Scale" type="text" value="10000"/><br />
<input type="submit" value="CLick here to create report"/>
</form>'''
@route('/<UniqueID>', method='POST') # Return
def PHPH_Script(UniqueID):
# Big long script to create a report
return '''<p>The report has been created. Click this button to access it.<br /></p>
<form action="''' + WebLocation +'''.html">
<input type="submit" value="CLick here to access report">
</form>'''
# Create and Run Page
#run(host='localhost', port=8080)
run(host='12.34.255.89', port=80) # This is not my actually IP Address.
コードの最後の行は、次のエラーを出し続けるものです: error: [Errno 10049] The requested address is not valid in its context. コメントアウトされた行を使用すると、魅力的に機能します。
私のIPが正しく、ポートが開いていることはわかっているので、私の問題が何であるかを知っている人はいますか?