0

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)
4

1 に答える 1

1

And to answer question - are you sure you want to bind it only @ 127? What I mean - 127.0... is localhost... try 0.0.0.0 or the IP

于 2012-08-29T01:11:58.530 に答える