当前位置: 首页>>代码示例>>Python>>正文


Python AlchemyAPI.apikey方法代码示例

本文整理汇总了Python中alchemyapi.AlchemyAPI.apikey方法的典型用法代码示例。如果您正苦于以下问题:Python AlchemyAPI.apikey方法的具体用法?Python AlchemyAPI.apikey怎么用?Python AlchemyAPI.apikey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在alchemyapi.AlchemyAPI的用法示例。


在下文中一共展示了AlchemyAPI.apikey方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_sentiment

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import apikey [as 别名]
def get_sentiment(company_id, text):
    alchemyapi = AlchemyAPI()
    key_phrases = []
    for apikey in engine.get_random_alchemy_credentials():
        alchemyapi.apikey = apikey
        response = alchemyapi.keywords('text', text, {'sentiment': 1})
        if response['status'] == 'OK':
            if len(response['keywords']) == 0:
                return 0
            # related_words = models.RelatedWord.query.filter_by(company_id=company_id).all()
            for keyword in response["keywords"]:
                if 'sentiment' in keyword:
                    if keyword['sentiment'].has_key('score'):
                        key_phrases.append(float(keyword['sentiment']['score']))
                    elif keyword['sentiment']['type'] == 'neutral':
                        key_phrases.append(0)

            if len(key_phrases) == 0:
                return 0
            else:
                return float("{0:.2f}".format(sum(key_phrases)/len(key_phrases)))
        elif response['status'] == 'ERROR' and response['statusInfo'] != 'unsupported-text-language':
            print "ERROR: getting sentiment " + response['statusInfo']
            # Skip onto the next api key
            continue
        else:
            print "None of the above " + response['statusInfo']
            return 0
    #Return none when all api keys are exhausted
    return None
开发者ID:sameetandpotatoes,项目名称:Swocker,代码行数:32,代码来源:tasks.py

示例2: store_concepts

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import apikey [as 别名]
def store_concepts(tweets):
    # Convert string array to string
    all_tweets_as_string = ' '.join(tweets)
    alchemyapi = AlchemyAPI()
    alchemyapi.apikey = get_random_alchemy_credentials()
    response = alchemyapi.concepts('text', all_tweets_as_string)
    if response['status'] == 'OK':
        for concept in response['concepts']:
            concepts.append(concept['text'])
开发者ID:sameetandpotatoes,项目名称:Swocker,代码行数:11,代码来源:engine.py

示例3: get_sentiment

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import apikey [as 别名]
def get_sentiment(text):
    alchemyapi = AlchemyAPI()
    alchemyapi.apikey = get_random_alchemy_credentials()
    response = alchemyapi.keywords('text', text, {'sentiment': 1})
    relevances = []
    if 'keywords' not in response or len(response['keywords']) == 0:
        return None
    for keyword in response["keywords"]:
        for company_word in concepts:
            if company_word.lower() in text.lower() and 'sentiment' in keyword:
                if 'score' in keyword['sentiment']:
                    relevances.append(float(keyword['sentiment']['score']))
                elif keyword['sentiment']['type'] == 'neutral':
                    relevances.append(0.5)
    if not relevances:
        return 0.5
    else:
        return float("{0:.2f}".format(sum(relevances)/len(relevances)))
开发者ID:sameetandpotatoes,项目名称:Swocker,代码行数:20,代码来源:engine.py

示例4: generate_concepts_for_company

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import apikey [as 别名]
def generate_concepts_for_company(company_id, tweets):
    all_tweets_as_string = ' '.join(tweets)
    alchemyapi = AlchemyAPI()
    api_error = False
    for apikey in engine.get_random_alchemy_credentials():
        alchemyapi.apikey = apikey
        response = alchemyapi.concepts('text', all_tweets_as_string)
        related_words = []
        if response['status'] == 'OK':
            for concept in response['concepts']:
                related_words.append(concept['text'])
        elif response['status'] == 'ERROR' and tweets != []:
            print "ERROR getting concepts" + response['statusInfo']
            api_error = True
            # Move onto the next api key
            continue
    # Return null when all api keys are exhausted
    if api_error and len(related_words) == 0:
        return None
    return related_words
开发者ID:sameetandpotatoes,项目名称:Swocker,代码行数:22,代码来源:tasks.py

示例5: AlchemyAPI

# 需要导入模块: from alchemyapi import AlchemyAPI [as 别名]
# 或者: from alchemyapi.AlchemyAPI import apikey [as 别名]
urllib3.contrib.pyopenssl.inject_into_urllib3()

# Import the necessary methods from tweepy library
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
import json

import re, string

#API Keys
import keys
# AlchemyAPI
from alchemyapi import AlchemyAPI
alchemyapi = AlchemyAPI()
alchemyapi.apikey = keys.alchemy_apikey

#TwitterAPI keys
consumer_key = keys.twitter_consumer_key
consumer_secret = keys.twitter_consumer_secret
access_token = keys.twitter_access_token
access_token_secret = keys.twitter_access_token_secret


# Tweet object
class Tweet:
    def __init__(self, author, text, location):
        self.author = author
        self.text = text
        self.location = location
开发者ID:karateAMD,项目名称:SigIR-ElectionSite,代码行数:32,代码来源:twitter_api_example.py


注:本文中的alchemyapi.AlchemyAPI.apikey方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。