mirror of
https://github.com/curlconverter/curlconverter.git
synced 2022-05-22 02:35:29 +03:00
10 lines
131 B
Python
10 lines
131 B
Python
import requests
|
|
|
|
data = [
|
|
('foo', 'bar'),
|
|
('foo', ''),
|
|
('foo', 'barbar'),
|
|
]
|
|
|
|
requests.post('http://example.com/', data=data)
|