aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/test_flow_export/python_patch.py
blob: 159e802f14aba5891e1b183d08902034b1c1e20b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import requests

url = 'http://address/path'

headers = {
    'header': 'qvalue',
    'content-length': '7',
}

params = {
    'query': 'param',
}

data = '''content'''

response = requests.request(
    method='PATCH',
    url=url,
    headers=headers,
    params=params,
    data=data,
)

print(response.text)