mitmproxy/netlib/http/http2/__init__.py
2016-10-17 10:32:12 +02:00

9 lines
197 B
Python

from netlib.http.http2.framereader import read_raw_frame, parse_frame
from netlib.http.http2.utils import parse_headers
__all__ = [
"read_raw_frame",
"parse_frame",
"parse_headers",
]