Exemple #1
0
def main():
    with open(MONGO_CONF_FILE) as f:
        mongo_conf = json.load(f)
    client = MongoClient("mongodb://{host}:{port}".format(**mongo_conf))
    db = client[mongo_conf['database']]

    articles = db.articles.find({'sentiment_text': {'$exists': False}})

    for article in articles:
        try:
            sentiment_text = format_article(article['url'])
        except RuntimeError:
            logging.fatal('Couldnt get sentiment for url {}'.format(article['url']))
            continue
        else:
            if not db.articles.update({'_id': article['_id']}, {'$set': {'sentiment_text': sentiment_text}}):
                logging.warn('Couldn\'t update article with id {}'.format(article['_id']))
Exemple #2
0
def localmain(url):
    try:
        sentiment_text = format_article(url)
        return json.dumps({'error': '', 'text': sentiment_text})
    except RuntimeError:
        return json.dumps({'error': 'Error fetching URL', 'text': ''})