当前位置:   article > 正文

百度情感分析API批量调用_百度情感分析api批量使用

百度情感分析api批量使用

直接贴代码叭,只要申请了个人百度账号并且改代码内对应的参数就可以直接实现

# -*- coding: utf-8 -*-

import json
import requests
import pandas as pd
import time
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)

def get_sentiment_result(text):
    """
    利用情感倾向分析API来获取返回数据
    :param text: 输入文本
    :return response: 返回的响应
    """
    if text == '':
        return ''
    # 请求接口
    url = "https://aip.baidubce.com/oauth/2.0/token"
    # 需要先获取一个 token
    client_id = 'client 账号'
    client_secret = 'client 密码'
    params = {
   
        'grant_type': 'client_credentials',
        'client_id': client_id,
        'client_secret': client_secret
    }
    headers = {
   'Content-Type': 'application/json; charset=UTF-8'}
    response = requests.post(url=url
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/359468
推荐阅读
相关标签
  

闽ICP备14008679号