在Python 2.7中运行cURL命令

问题描述 投票:0回答:1

我需要跑

curl -H "Accept: application/json+v6" -H "x-api-key: <your_api_key>" \https://beta.check-mot.service.gov.uk/trade/vehicles/mot-tests\?registration=ZZ99ABC

在Python 2.7中。我已经研究过使用请求,但我不确定如何为上述命令专门构建它。

帮助赞赏

python python-2.7 curl python-requests anpr
1个回答
0
投票

要打破您的要求,您需要:

  • 对网址执行请求(对MOT服务)
  • 包括一些标题(-H参数卷曲)

您可以使用请求轻松完成这些操作:

import request

url = "https://beta.check-mot.service.gov.uk/trade/vehicles/mot-tests?registration=ZZ99ABC"
headers = {
    "Accept": "application/json+v6",
    "x-api-key": "your-key",

}

response = requests.get(url, headers=headers)
© www.soinside.com 2019 - 2024. All rights reserved.