-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
21 lines (19 loc) · 822 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from ml.tweet.sentiment import process_tweets_emotions
from ml.tweet.aggregate_emotions import aggregate_tweet_emotions_by_houre
from ml.tweet.join_time_series import join_time_series
from ml.tweet.word_count_generate import generate_word_count
from ml.tweet.count_distinct_user_tweets import generate_user_post_counts
from ml.tweet.aggregate_vad import aggregate_vad
from ml.tweet.hourly_tweet_count import count_tweets
from scripts.insert_tweets import main as insert_tweets
from scripts.insert_stock_data import main as insert_stock_data
if __name__ == '__main__':
# generate_user_post_counts()
# process_tweets_emotions()
# insert_tweets()
# aggregate_tweet_emotions_by_houre()
# join_time_series()
# generate_word_count()
# insert_stock_data()
# aggregate_vad()
# count_tweets()