MCPcopy Index your code
hub / github.com/rawpython/remi / __init__

Method __init__

remi/server.py:922–932  ·  view source on GitHub ↗
(self, gui_class, title='', width=800, height=600, resizable=True, fullscreen=False, start=True,
                 userdata=())

Source from the content-addressed store, hash-verified

920
921class StandaloneServer(Server):
922 def __init__(self, gui_class, title='', width=800, height=600, resizable=True, fullscreen=False, start=True,
923 userdata=()):
924 Server.__init__(self, gui_class, title=title, start=False, address='127.0.0.1', port=0, username=None,
925 password=None,
926 multiple_instance=False, enable_file_cache=True, update_interval=0.1, start_browser=False,
927 websocket_timeout_timer_ms=1000, pending_messages_queue_length=1000, userdata=userdata)
928
929 self._application_conf = {'width': width, 'height': height, 'resizable': resizable, 'fullscreen': fullscreen}
930
931 if start:
932 self.serve_forever()
933
934 def serve_forever(self):
935 try:

Callers

nothing calls this directly

Calls 2

serve_foreverMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected