簡體   English   中英

將 curl 轉換為 python 請求

[英]convert curl to python requests

我正在嘗試將以下 curl 請求轉換為 python 請求(使用請求)

curl -X POST -H "Authorization: Bearer <TOKEN>" -H "Cache-Control: no-cache" -H "Content-Type: multipart/form-data" -F "modelId=CommunitySentiment" -F "document=the presentation was great and I learned a lot"  https://api.einstein.ai/v2/language/sentiment

響應將是 json {"probabilities": [{ "label": "positive", "probability": 0.8673582 }, { "label": "negative", "probability": 0.1316828 }, { "label": "中性”,“概率”:0.0009590242 } ] }

我的 python 腳本如下,但是,它返回 400 錯誤請求。

import requests
import json

headers = {'Authorization': 'Bearer 1ca35fd8454f74ff5496614a858bfd4c80bd196b','Cache-Control': 'no-cache','Content-Type': 'multipart/form-data'}

files = json.dumps({'modelId':'CommunitySentiment','document': 'the presentation was great and I learned a lot'})

r = requests.post('https://api.einstein.ai/v2/language/sentiment', headers=headers, data=files, verify=False)

我覺得我遺漏了一些東西或轉換了錯誤的東西......

任何幫助,將不勝感激。

謝謝

您有以下實用程序:

https://curl.trillworks.com/

我用它所有的時間。 附有示例。 在此處輸入圖片說明

您正在使用json.dumps()函數將此JSON對象轉換為字符串:

files = json.dumps({'modelId':'CommunitySentiment','document': 'the presentation was great and I learned a lot'})

Requests.post()需要一個字典,而不是字符串。 將上一行替換為:

files = {'modelId':'CommunitySentiment','document': 'the presentation was great and I learned a lot'}

可以使用files參數發送多部分表單數據,例如compare:

$ curl -F "document=the presentation was great and I learned a lot" -F "modelId=CommunitySentiment" http://httpbin.org/post
{
  "args": {}, 
  "data": "", 
  "files": {}, 
  "form": {
    "document": "the presentation was great and I learned a lot", 
    "modelId": "CommunitySentiment"
  }, 
  "headers": {
    "Accept": "*/*", 
    "Connection": "close", 
    "Content-Length": "303", 
    "Content-Type": "multipart/form-data; boundary=------------------------11650e244656399f", 
    "Expect": "100-continue", 
    "Host": "httpbin.org", 
    "User-Agent": "curl/7.55.1"
  }, 
  "json": null, 
  "origin": "X.X.X.X", 
  "url": "http://httpbin.org/post"
}

Python請求:

In []:
import requests

files = {
    'modelId': (None, 'CommunitySentiment'),
    'document': (None, 'the presentation was great and I learned a lot')
}

requests.post('http://httpbin.org/post', files=files).json()

Out []:
{
  "args": {}, 
  "data": "", 
  "files": {}, 
  "form": {
    "document": "the presentation was great and I learned a lot", 
    "modelId": "CommunitySentiment"
  }, 
  "headers": {
    "Accept": "*/*", 
    "Accept-Encoding": "gzip, deflate", 
    "Connection": "close", 
    "Content-Length": "279", 
    "Content-Type": "multipart/form-data; boundary=7cb959d7e990471c90c0bce7b92ab697", 
    "Host": "httpbin.org", 
    "User-Agent": "python-requests/2.18.4"
  }, 
  "json": null, 
  "origin": "24.13.37.157", 
  "url": "http://httpbin.org/post"
}

因此,您的示例將是:

In []:
headers = {
    'Authorization': 'Bearer <TOKEN>',
    'Cache-Control': 'no-cache'
}
files = {
    'modelId': (None, 'CommunitySentiment'),
    'document': (None, 'the presentation was great and I learned a lot')
}
requests.post('https://api.einstein.ai/v2/language/sentiment', headers=headers, files=files, verify=False).json()

Out[]:
{'object': 'predictresponse',
 'probabilities': [{'label': 'positive', 'probability': 0.8673582},
  {'label': 'negative', 'probability': 0.1316828},
  {'label': 'neutral', 'probability': 0.0009590242}]}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM