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

url = 'http://address/path'

headers = {
    'content-type': 'application/json',
}

json = {
    "name": "example",
    "email": "example@example.com"
}

response = requests.request(
    method='POST',
    url=url,
    headers=headers,
    json=json,
)

print(response.text)