I want to use bottle.py over a wireless network. Unfortunately I do not know how to go about setting this up. The code I want to execute over a wireless network (Execute from another computer) is:
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)