RequestsToCurl
Convert python requests object to cURL command.
This repository is improved based on curlify. Since curlify does not seem to be updated anymore, no one responded to the PR I provided, so this repository was created.
Installation
pip install requests_to_curl
Usage
>>> import curl
>>> import requests
>>>
>>> response = requests.get("https://lulaolu.com")
>>>
>>> curl.parse(response) # stdout
curl -X GET -H 'Accept: */*' -H 'Accept-Encoding: gzip, deflate' -H 'Connection: keep-alive' -H 'User-Agent: python-requests/2.27.1' https://lulaolu.com:443/
If you want to get the curl string in the code project, use return_it
>>> c = curl.parse(response, return_it=True)
>>> print(c)
If you want to hide stdout, use print_it=False
>>> c = curl.parse(response, print_it=False)
You can also use r2c or requests_to_curl instead of curl
>>> import r2c
>>> r2c.parse(response) # ok!
>>>
>>> import requests_to_curl
>>> requests_to_curl.parse(response) # ok!
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file requests_to_curl-1.1.0.tar.gz.
File metadata
- Download URL: requests_to_curl-1.1.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e5ebeec91b36c0517a2ef418c33620d835ebabd8b3f08bd617b0d0a9efcd50
|
|
| MD5 |
c59cb03c53ce0cde2fbe6cd2e08e9b1f
|
|
| BLAKE2b-256 |
cff43f6e6e87cf2de47bcddab1859378f6452cff98ec2a21ae0348300677aae4
|