如何将curl get命令转换为等效的pycurl命令,特别是命令:
curl -b "email=EMAIL; password=PASS" https://storkcloud.org/api/stork/ls?uri=ftp://ftp.mozilla.org/
答案 0 :(得分:1)
使用requests
模块:
import requests
r = requests.get(
'https://storkcloud.org/api/stork/ls?uri=ftp://ftp.mozilla.org/',
cookies=dict(email="EMAIL", password="PASS")
)
print r.text
答案 1 :(得分:0)
不是pycurl等价物,而是工作,你打算做什么:
试试这个(试过并测试过):
import requests
import os
import json
if os.path.exists("input.json"):
os.remove("input.json")
stmt = """curl -b "email=XXX; password=YYY\" https://storkcloud.org/api/stork/ls?uri=ftp://ftp.mozilla.org >> input.json"
returnValue = os.system(stmt)
with open("input.json") as json_file:
json_data = json.load(json_file)
print json_data
希望这可以回答您的问题。