All Projects → isfonzar → sentiment-thermometer

isfonzar / sentiment-thermometer

Licence: MIT License
Measure the sentiment towards a word, name or sentence on social networks

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to sentiment-thermometer

Stocksight
Stock market analyzer and predictor using Elasticsearch, Twitter, News headlines and Python natural language processing and sentiment analysis
Stars: ✭ 1,037 (+1751.79%)
Mutual labels:  twitter, sentiment-analysis
Tia
Your Advanced Twitter stalking tool
Stars: ✭ 98 (+75%)
Mutual labels:  twitter, sentiment-analysis
Sarcasm Detection
Detecting Sarcasm on Twitter using both traditonal machine learning and deep learning techniques.
Stars: ✭ 73 (+30.36%)
Mutual labels:  twitter, sentiment-analysis
Awesome Twitter Data
A list of Twitter datasets and related resources.
Stars: ✭ 533 (+851.79%)
Mutual labels:  twitter, sentiment-analysis
R
Sentiment analysis and visualization of real-time tweets using R
Stars: ✭ 127 (+126.79%)
Mutual labels:  twitter, sentiment-analysis
Stocktalk
Data collection tool for social media analytics
Stars: ✭ 765 (+1266.07%)
Mutual labels:  twitter, sentiment-analysis
Twitter Sentiment Analysis
This script can tell you the sentiments of people regarding to any events happening in the world by analyzing tweets related to that event
Stars: ✭ 94 (+67.86%)
Mutual labels:  twitter, sentiment-analysis
Orange3 Text
🍊 📄 Text Mining add-on for Orange3
Stars: ✭ 83 (+48.21%)
Mutual labels:  twitter, sentiment-analysis
Labeled Tweet Generator
Search for tweets and download the data labeled with its polarity in CSV format
Stars: ✭ 111 (+98.21%)
Mutual labels:  twitter, sentiment-analysis
Stock Market Prediction Web App Using Machine Learning And Sentiment Analysis
Stock Market Prediction Web App based on Machine Learning and Sentiment Analysis of Tweets (API keys included in code). The front end of the Web App is based on Flask and Wordpress. The App forecasts stock prices of the next seven days for any given stock under NASDAQ or NSE as input by the user. Predictions are made using three algorithms: ARIMA, LSTM, Linear Regression. The Web App combines the predicted prices of the next seven days with the sentiment analysis of tweets to give recommendation whether the price is going to rise or fall
Stars: ✭ 101 (+80.36%)
Mutual labels:  twitter, sentiment-analysis
Twitter Sent Dnn
Deep Neural Network for Sentiment Analysis on Twitter
Stars: ✭ 270 (+382.14%)
Mutual labels:  twitter, sentiment-analysis
Datastories Semeval2017 Task4
Deep-learning model presented in "DataStories at SemEval-2017 Task 4: Deep LSTM with Attention for Message-level and Topic-based Sentiment Analysis".
Stars: ✭ 184 (+228.57%)
Mutual labels:  twitter, sentiment-analysis
hashformers
Hashformers is a framework for hashtag segmentation with transformers.
Stars: ✭ 18 (-67.86%)
Mutual labels:  twitter, sentiment-analysis
Twitter sentiment analysis word2vec convnet
Twitter Sentiment Analysis with Gensim Word2Vec and Keras Convolutional Network
Stars: ✭ 24 (-57.14%)
Mutual labels:  twitter, sentiment-analysis
TwEater
A Python Bot for Scraping Conversations from Twitter
Stars: ✭ 16 (-71.43%)
Mutual labels:  twitter, sentiment-analysis
Learning Social Media Analytics With R
This repository contains code and bonus content which will be added from time to time for the book "Learning Social Media Analytics with R" by Packt
Stars: ✭ 102 (+82.14%)
Mutual labels:  twitter, sentiment-analysis
Twitter Sentiment Visualisation
🌍 The R&D of a sentiment analysis module, and the implementation of it on real-time social media data, to generate a series of live visual representations of sentiment towards a specific topic or by location in order to find trends.
Stars: ✭ 132 (+135.71%)
Mutual labels:  twitter, sentiment-analysis
Tweetfeels
Real-time sentiment analysis in Python using twitter's streaming api
Stars: ✭ 249 (+344.64%)
Mutual labels:  twitter, sentiment-analysis
ember-meta
Setup meta for your Prember/Ember blog to support opengraph, microdata, Facebook, Twitter, Slack etc.
Stars: ✭ 15 (-73.21%)
Mutual labels:  twitter
Twitter
A Twitter handle parser for Laravel 5.
Stars: ✭ 12 (-78.57%)
Mutual labels:  twitter

Language License Latest Stable Version

About Sentiment Thermometer

Sentiment Thermometer is a library and tool to measure the sentiment around a word, name, sentence or hashtag using social networks.

Features

  • Fully integrated with twitter feed
  • Positive/negative/neutral analysis
  • EASY to incorporate on your projects
  • CUSTOMIZE to your needs
  • STUPIDLY EASY TO USE
  • Very fast start up and response time

Installation

Composer

$ composer require iiiicaro/sentiment-thermometer 

Usage

Basic usage

<?php

require(__DIR__ . '/../vendor/autoload.php');

use iiiicaro\SentimentThermometer\SentimentThermometer;

$config = [
    'twitter' => [
        'consumer_key' => 'CONSUMER_KEY_HERE',
        'consumer_secret' => 'CONSUMER_SECRET_HERE',
    ]
];

$sentimentThermometer = new SentimentThermometer($config);
$thermomether = $sentimentThermometer->get('Donald Trump');

print_r($thermomether);

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or feature requests.

Social Coding

  1. Create an issue to discuss about your idea
  2. [Fork it] (https://github.com/iiiicaro/sentiment-thermometer/fork)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request
  7. Profit!
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].