Showing
1 changed file
with
4 additions
and
3 deletions
... | @@ -2,6 +2,7 @@ from content import GetData | ... | @@ -2,6 +2,7 @@ from content import GetData |
2 | from GetTopic import GetWordCloud | 2 | from GetTopic import GetWordCloud |
3 | from SentimentAnalyzer import StartSentimentAnalysis | 3 | from SentimentAnalyzer import StartSentimentAnalysis |
4 | 4 | ||
5 | -GetData() | ||
6 | -GetWordCloud() | ||
7 | -StartSentimentAnalysis() | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
5 | +if __name__ == '__main__': | ||
6 | + GetData() | ||
7 | + GetWordCloud() | ||
8 | + StartSentimentAnalysis() | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment