1
NLTK APIを使用してテキストを渡して情報を取得しています。PythonのAPIオブジェクトからデータを抽出する
出力は次のとおりです。
{"probability": {"neg": 0.50955199890675162, "neutral": 0.6850996054094568, "pos": 0.49044800109324838}, "label": "neutral"}
「ニュートラル」のみを抽出するにはどうすればよいですか?助けてください。その後
import requests
r = requests.post("http://text-processing.com/api/sentiment/",data={'text':'I am a good boy'})
jsn_dict = r.json()
:あなたはキーによるアクセス、その後r.json()
を呼び出す必要が