Klieber frederic
2015-12-02 20:54:56 UTC
With this code :
import threading
from bottle import route, run, template
@route('/hello/<name>')
def index(name):
return "coucou"
server_thread =threading.Thread(target=run(host='localhost', port=8080))
server_thread.start()
print "continue ... "
The line "continue ..." is never printed
Any idea ? Do i miss something ?
Thanks for your reply
--
import threading
from bottle import route, run, template
@route('/hello/<name>')
def index(name):
return "coucou"
server_thread =threading.Thread(target=run(host='localhost', port=8080))
server_thread.start()
print "continue ... "
The line "continue ..." is never printed
Any idea ? Do i miss something ?
Thanks for your reply
--
--
You are member of the "bottlepy" group at google groups.
See http://groups.google.de/group/bottlepy for mailing list options.
See http://bottlepy.org/ for news and documentation.
---
You received this message because you are subscribed to the Google Groups "bottlepy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bottlepy+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You are member of the "bottlepy" group at google groups.
See http://groups.google.de/group/bottlepy for mailing list options.
See http://bottlepy.org/ for news and documentation.
---
You received this message because you are subscribed to the Google Groups "bottlepy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bottlepy+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.