8 lines
284 B
Python
8 lines
284 B
Python
# Constants (The instructors said that we can use global constants here:
|
|
# https://piazza.com/class/ksovzjrlsye72f?cid=1664
|
|
# They should not end with "/"
|
|
DATA_DIR = './data'
|
|
TWEETS_DIR = f'{DATA_DIR}/twitter/user-tweets'
|
|
USER_DIR = f'{DATA_DIR}/twitter/user'
|
|
REPORT_DIR = './report'
|