mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
25 lines
490 B
Python
25 lines
490 B
Python
# -*- coding: utf8 -*-
|
|
"""
|
|
Burp-UI is a web-ui for burp backup written in python with Flask and
|
|
jQuery/Bootstrap
|
|
|
|
.. module:: burpui
|
|
:platform: Unix
|
|
:synopsis: Burp-UI main module.
|
|
|
|
.. moduleauthor:: Ziirish <hi+burpui@ziirish.me>
|
|
"""
|
|
import sys
|
|
import warnings
|
|
|
|
from .app import init
|
|
|
|
warnings.simplefilter('always', RuntimeWarning)
|
|
|
|
if sys.version_info < (3, 0): # pragma: no cover
|
|
reload(sys)
|
|
sys.setdefaultencoding('utf-8')
|
|
|
|
|
|
# backward compatibility
|
|
create_app = init
|