inkstitch/lib/extensions/install.py

17 wiersze
427 B
Python
Czysty Zwykły widok Historia

from .base import InkstitchExtension
from ..api import APIServer
from ..gui import open_url
2018-06-24 19:55:13 +00:00
class Install(InkstitchExtension):
def __init__(self):
InkstitchExtension.__init__(self)
2018-08-22 18:12:39 +00:00
def effect(self):
api_server = APIServer(self)
port = api_server.start_server()
electron = open_url("/install?port=%d" % port)
electron.wait()
api_server.stop()
api_server.join()