You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Contributors: Erick Hernandez and Ruben Sanchez
4
+
5
+
## Functionality
6
+
7
+
This project implements a tweet sentiment aggreator tool that can be run as a python executable. It will take in input that provides the hashtag we would like to search for and the keywords we would like to seperate by under that hashtag.
8
+
9
+
From there, the program will aggregate tweets and do sentiment analysis on them by displaying a graph as shown below.
10
+
11
+

12
+
13
+
This graph was created by searching the hashtag "COVID19" and has keyworsds, China, US, Italy, Trump.
14
+
15
+
## Usage
16
+
17
+
1) The first step is creating/using the provided config file to configure your search results.
18
+
19
+
edit `config.yaml` to look something like:
20
+
```
21
+
hashtag: COVID19
22
+
keywords:
23
+
- China
24
+
- US
25
+
- Italy
26
+
- Trump
27
+
```
28
+
or
29
+
```
30
+
hashtag: DemDebate
31
+
keywords:
32
+
- Clinton
33
+
- Bernie
34
+
- Biden
35
+
- Bloomberg
36
+
```
37
+
2) You can run the script by providing the name of the config file with the `-f` flag, e.g.
We currently do not have any bugs that we have found. Our biggest issue that we are currently limited to a small number of tweets because the twitter API only allows us to query 18k tweets per minute. The downloading is very slow and we are not able to break into shorter time intervals.
0 commit comments