A Library to Convert Curl to Python Requests File
Project description
curl2pyreqs
A library to convert curl to python requests file.
Requirement
Python >= 3.6
pyperclip >= 1.8.0
rich >= 9.13.0
On Linux, xclip or xsel needed:
sudo apt-get install xclip
or
sudo apt-get install xsel
Install
$ pip install curl2pyreqs
Usage
Use as binary
- Export curl request file to python script.
$ curl2pyreqs -F example.curl
Convertion Finished.
Please open example.py to check the code.
- Convert curl request in the clipboard and paste the requests code back
$ curl2pyreqs
Convertion Finished.
Now requests code is copyed in your clipboard.
Use by importing
- Convert a curl string to python-requests, copyed from Chrome or Firefox:
>>> from curl2pyreqs.ulti import parseCurlString
>>> output = parseCurlString("""curl -H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8' -H 'accept-language: en-US,en;q=0.5' --compressed -H 'upgrade-insecure-requests: 1' -H 'te: trailers' https://pypi.org/""")
>>> print(output)
- Convert curl file stream to python-requests, copyed from Chrome or Firefox:
>>> from curl2pyreqs.ulti import parseCurlFile
>>> output = parseCurlFile('./example.curl')
>>> print(output)
README_CN
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
curl2pyreqs-0.4.1.tar.gz
(7.0 kB
view hashes)
Built Distribution
Close
Hashes for curl2pyreqs-0.4.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd1d32600046c388e97b6d7739a9b282d0a24e7a2a89988fa7d24ff5d07ea1bc |
|
MD5 | 75484a81ff5d57c6f7675a30b5185b17 |
|
BLAKE2b-256 | 7bb48f01ef41771f2e583061453a4cf1eb018acab5d52737e3e1b4976cbaa3fe |