Converts curl statements from Chrome's DevTools or Firefox's Tools to executable python 2 and 3 compatible code.
I was inspired to write a command line version after seeing @NickCarneiro's web app on curl.trillworks.com.
pip install curltopy
-
Open Chrome's DevTools or Firefox's Tools
-
Click on the Network tab
-
Navigate to a website
-
Right click on a call and click Copy > Copy as cURL
-
Here is a template. Replace the curl statement with the one captured from the browser.
curltopy 'curl "http://example.com" -H "Pragma: no-cache"' > runme.py chmod +x runme.py ./runme.py