curlify

Library to convert python requests object to curl command.


License
MIT
Install
pip install curlify==2.0.1

Documentation

Curlify - convert python requests request object to cURL command

Installation

pip install curlify

Changes

v.2.2.0

  • Fixed shell quotes. Fixed posting CSV file. Thanks to @leNEKO

v.2.1.1

  • Add --insecure flag if verify parameter is not True

v.2.1.0

  • Fixed body rendering when using json param to request function.

v.2.0.1

  • Added compressed parameter to to_curl function, if it is needed to add --compressed option to generated cURL command.

v.2.0

v.1.2

  • Order of headers is deterministic (thanks to @tomviner)

Example

import curlify
import requests

response = requests.get("http://google.ru")
print(curlify.to_curl(response.request))
# curl -X 'GET' -H 'Accept: */*' -H 'Accept-Encoding: gzip, deflate' -H 'Connection: keep-alive' -H 'User-Agent: python-requests/2.18.4' 'http://www.google.ru/'

print(curlify.to_curl(response.request, compressed=True))
# curl -X 'GET' -H 'Accept: */*' -H 'Accept-Encoding: gzip, deflate' -H 'Connection: keep-alive' -H 'User-Agent: python-requests/2.18.4' --compressed 'http://www.google.ru/'