-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat_config.py
More file actions
25 lines (22 loc) · 846 Bytes
/
Copy pathchat_config.py
File metadata and controls
25 lines (22 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
Config File
"""
filename: str = 'Chat_Files//family_chat.txt'
month_map: dict = {1: 'Jan',
2: 'Feb',
3: 'Mar',
4: 'Apr',
5: 'May',
6: 'Jun',
7: 'Jul',
8: 'Aug',
9: 'Sep',
10: 'Oct',
11: 'Nov',
12: 'Dec'}
day_map: dict = {day: day for day in
['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday']}
max_members_display_legend: int = 6 # Max number of participants before legend isn't displayed
mov_avg_period: int = 30 # Period of moving average in days.
mov_avg_freq: int = 5
reply_time_max: float = 1 # Time at which replies are considered the start of a new conversation in days