mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 07:08:10 +00:00
12 lines
424 B
Python
12 lines
424 B
Python
"""Send a reply from the proxy without sending any data to the remote server."""
|
|
from mitmproxy import http
|
|
|
|
|
|
def request(flow: http.HTTPFlow) -> None:
|
|
if flow.request.pretty_url == "http://example.com/path":
|
|
flow.response = http.Response.make(
|
|
200, # (optional) status code
|
|
b"Hello World", # (optional) content
|
|
{"Content-Type": "text/html"} # (optional) headers
|
|
)
|