https://github.com/gabicavalcante/twitter-sentiment-analysis
https://github.com/gabicavalcante/twitter-sentiment-analysis
hacktoberfest rq sentiment twitter-api
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gabicavalcante/twitter-sentiment-analysis
- Owner: gabicavalcante
- Created: 2020-09-20T23:34:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-18T20:36:38.000Z (over 5 years ago)
- Last Synced: 2025-04-24T01:20:24.986Z (about 1 year ago)
- Topics: hacktoberfest, rq, sentiment, twitter-api
- Language: Python
- Homepage:
- Size: 11.2 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# twitter-sentiment-analysis
Using as reference the blog post [twitter sentiment python docker elasticsearch kibana](https://realpython.com/twitter-sentiment-python-docker-elasticsearch-kibana/).
### run
1. twitter api
To run the project you need to register an application at [twitter apps](http://apps.twitter.com/). Get the `consumer key` and `consumer secret` and create an `access token` under the *Keys and Access Tokens* tab. There is a file `config.template.py`, copy it and rename to `config.py`. Add your credentials in this file.
```
consumer_key = "add_your_consumer_key"
consumer_secret = "add_your_consumer_secret"
access_token = "add_your_access_token"
access_token_secret = "add_your_access_token_secret"
```
2. streaming and processing tweets
We are using the [Tweepy](https://www.tweepy.org) to grab the tweets. You can see the code in `sentimental.py` file, there we connect to twitter api and filter the data by the keywords `[covid, covid19, covid-19, pandemia]`.
The next step is calculate sentimental analysis using [Textblog](http://textblob.readthedocs.org/en/dev/), determine if the overall sentiment is positive, negative or neutral. At the end, the tweet data is added to the Elasticsearch DB and Mongo DB.
3. store the data
To run mongo, kibana and the elasticsearch:
```
$ docker-compose up
```
To run the python script:
```
$ pip install -r requirements.txt
$ python sentimental.py
```