Ajout du GUI

This commit is contained in:
thatscringebro
2022-08-08 16:31:52 -04:00
parent db362ccdca
commit abd15f28b6
851 changed files with 99957 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
'''
Web Debugger
============
.. versionadded:: 1.2.0
.. warning::
This module is highly experimental, use it with care.
This module will start a webserver and run in the background. You can
see how your application evolves during runtime, examine the internal
cache etc.
Run with::
python main.py -m webdebugger
Then open your webbrowser on http://localhost:5000/
'''
__all__ = ('start', 'stop')
import os
if 'KIVY_DOC' not in os.environ:
from kivy.modules._webdebugger import start, stop
else:
start = stop = lambda *x: True