bottle.py
ワイヤレスネットワークで使いたい。残念ながら、これを設定する方法がわかりません。ワイヤレスネットワーク経由で実行したいコード(別のコンピューターから実行)は次のとおりです。
import ctypes
from bottle import get, post, request, run
@get('/control')
def message():
return '''<form method='POST' action='/control'>
<input name='message' type='text'/>
<input type='submit'/>
</form>'''
@post('/control')
def send():
Message =request.forms.get('message')
MessageBox = ctypes.windll.user32.MessageBoxA
MessageBox(None,Message,'MESSAGE', 0)
run(host=127.0.0.1, port=8090)