INNER CODE UNIT · Python
__init__
evilsocket/pwnagotchi · pwnagotchi/ui/web/server.py:17
def __init__(self, agent, config):
self._config = config['web']
self._enabled = self._config['enabled']
self._port = self._config['port']
self._address = self._config['address']
self._origin = None
self._agent = agent
if 'origin' in self._config:
self._origin = self._config['origin']
if self._enabled:
_thread.start_new_thread(self._http_serve, ())
def _http_serve(self):
if self._address is not None:
web_path = os.path.dirname(os.path.realpath(__file__))
app = Flask(__name__,