curl轉python requests程式碼
curl
curl是利用URL語法在命令列方式下工作的開原始檔傳輸工具,支援檔案的上傳和下載, 是綜合傳輸工具。
通過nodejs中的curlconverter可以將curl命令轉化為python requests程式碼
安裝curlconverternpm install --save curlconverter
curl命令可以直接用 curl www.google.com
使用
比較方便的辦法是通過Charles,直接copy cURL Request
終端執行curl -H "User-Agent: Dalvik/2.1.0 (Linux; U; Android 7.0; EVA-AL00 Build/HUAWEIEVA-AL00)" -H "Host: www.google.com" --compressed http://www.google.com/
可以看到返回結果
然後進入node
var curlc = require('curlconverter');
console.log(curlc.toPython('curl -H "User-Agent: Dalvik/2.1.0 (Linux; U; Android 7.0; EVA-AL00 Build/HUAWEIEVA-AL00)" -H "Host: www.google.com" --compressed http://www.google.com/'))
即可看到python requests程式碼內容
方便介面抓包轉python requests程式碼。
相關文章
- python requests庫 響應中文亂碼Python
- Python:requests模組Python
- python+requestsPython
- python requests檢測響應狀態碼Python
- Python及requests亂碼問題的總結Python
- python的網路程式設計之requests模組Python程式設計
- 使用Python和requests庫的簡單爬蟲程式Python爬蟲
- python爬蟲requests模組Python爬蟲
- python requests 最牛攻略Python
- 安裝Python requests包Python
- pyc位元組碼文字轉python程式碼Python
- python hex轉ascii轉換Python程式碼的簡單方法PythonASCII
- Python----Requests庫基本使用Python
- 05.python requests IP代理Python
- Python 中 Requests 庫的用法Python
- python使用requests獲取cookiePythonCookie
- Python requests爬蟲例項Python爬蟲
- python requests模組詳解薦Python
- Python Requests模組快速入門Python
- Python Requests簡單運用Python
- 大家快來嚐嚐鮮 轉<用 curl 和 scsh 編寫 web 指令碼>(轉)Web指令碼
- python3+requests:使用類封裝介面測試指令碼Python封裝指令碼
- requests返回值cookies轉字典Cookie
- Python requests設定代理的方法Python
- Python HTTP庫:requests快速入門PythonHTTP
- Python requests 安裝與開發Python
- 精講Python中的requests方法Python
- Python3安裝requests庫Python
- python庫學習之Requests(二)Python
- Python之Requests模組使用詳解Python
- python爬蟲之一:requests庫Python爬蟲
- python requests庫的簡單使用Python
- python的requests怎麼安裝Python
- python3使用requests包抓取並儲存網頁原始碼Python網頁原始碼
- python+requests對app和微信小程式進行介面測試PythonAPP微信小程式
- python+requests 對 app 和微信小程式進行介面測試PythonAPP微信小程式
- 修改 requests 庫原始碼的方法原始碼
- [轉載] python通過反射執行程式碼Python反射行程