-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathrun_with_auto_port.py
44 lines (29 loc) · 947 Bytes
/
run_with_auto_port.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "ipetrash"
import time
from threading import Thread
import cherrypy
class RootServer:
host = None
port = None
url = None
def __init__(self):
cherrypy.engine.subscribe("start", self.on_start)
@cherrypy.expose
def index(self):
return f"{self.host}:{self.port} / {self.url}"
def on_start(self):
def _wait_server_running():
# Wait running
while not cherrypy.server.running:
time.sleep(0.1)
self.host, self.port = cherrypy.server.bound_addr
self.url = cherrypy.server.description
print(f"{self.host}:{self.port} / {self.url}")
thread = Thread(target=_wait_server_running)
thread.start()
if __name__ == "__main__":
# Set random free port
cherrypy.config.update({"server.socket_port": 0})
cherrypy.quickstart(RootServer())