Add module docstring title to all files

This commit is contained in:
MstrPikachu
2021-12-13 19:54:07 -05:00
parent 3693bb3f85
commit f7667538b0
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module uses web requests to collect and process other data we are using in our analysis.
"""
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module interacts directly with the Twitter API to download tweets and users.
It contains functions related scraping users/tweets, including:
- getting the tweets of a user
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module stores constant variables in our projects.
Instructors said that we can use global constants: https://piazza.com/class/ksovzjrlsye72f?cid=1664
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module is the main module of our program which runs different functions in different modules
by steps.
"""
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
Processes data downloaded from the Twitter API. Processing consists of calculating popularity of
users, creating samples of users, filtering news channels, and processing tweets for file storage.
"""
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module generates report HTML and serves it in an HTTP server.
"""
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module contains useful functions and classes, including:
- debug messages
- file I/O
+1 -1
View File
@@ -1,4 +1,4 @@
"""
"""CSC110 Fall 2021 Project
This module uses matplotlib to visualize processed data as graphs. The results are stored in
report directory.
The graphs are created after processing the data, for example with filtering and removing outliers.