OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
flask
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/19/2021 04:38:27 PM
rwxrwxr-x
📄
__init__.py
2.2 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
__main__.py
30 bytes
09/19/2021 04:38:24 PM
rw-r--r--
📁
__pycache__
-
09/19/2021 04:38:27 PM
rwxr-xr-x
📄
app.py
80.45 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
blueprints.py
22.99 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
cli.py
31.29 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
config.py
10.81 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
ctx.py
17.02 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
debughelpers.py
6.03 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
globals.py
1.68 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
helpers.py
29.87 KB
09/19/2021 04:38:24 PM
rw-r--r--
📁
json
-
09/19/2021 04:38:27 PM
rwxr-xr-x
📄
logging.py
2.22 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
py.typed
0 bytes
09/19/2021 04:38:24 PM
rw-r--r--
📄
scaffold.py
31.64 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
sessions.py
14.83 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
signals.py
2.08 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
templating.py
5.49 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
testing.py
10.04 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
typing.py
1.64 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
views.py
5.73 KB
09/19/2021 04:38:24 PM
rw-r--r--
📄
wrappers.py
5.47 KB
09/19/2021 04:38:24 PM
rw-r--r--
Editing: typing.py
Close
import typing as t if t.TYPE_CHECKING: from _typeshed.wsgi import WSGIApplication # noqa: F401 from werkzeug.datastructures import Headers # noqa: F401 from .wrappers import Response # noqa: F401 # The possible types that are directly convertible or are a Response object. ResponseValue = t.Union[ "Response", t.AnyStr, t.Dict[str, t.Any], # any jsonify-able dict t.Generator[t.AnyStr, None, None], ] StatusCode = int # the possible types for an individual HTTP header HeaderName = str HeaderValue = t.Union[str, t.List[str], t.Tuple[str, ...]] # the possible types for HTTP headers HeadersValue = t.Union[ "Headers", t.Dict[HeaderName, HeaderValue], t.List[t.Tuple[HeaderName, HeaderValue]] ] # The possible types returned by a route function. ResponseReturnValue = t.Union[ ResponseValue, t.Tuple[ResponseValue, HeadersValue], t.Tuple[ResponseValue, StatusCode], t.Tuple[ResponseValue, StatusCode, HeadersValue], "WSGIApplication", ] AppOrBlueprintKey = t.Optional[str] # The App key is None, whereas blueprints are named AfterRequestCallable = t.Callable[["Response"], "Response"] BeforeRequestCallable = t.Callable[[], None] ErrorHandlerCallable = t.Callable[[Exception], ResponseReturnValue] TeardownCallable = t.Callable[[t.Optional[BaseException]], "Response"] TemplateContextProcessorCallable = t.Callable[[], t.Dict[str, t.Any]] TemplateFilterCallable = t.Callable[[t.Any], str] TemplateGlobalCallable = t.Callable[[], t.Any] TemplateTestCallable = t.Callable[[t.Any], bool] URLDefaultCallable = t.Callable[[str, dict], None] URLValuePreprocessorCallable = t.Callable[[t.Optional[str], t.Optional[dict]], None]