People-Counting-in-Real-Time/mylib/config.py
2020-09-27 12:23:08 +02:00

19 lines
732 B
Python

#===============================================================================
""" Optional features config. """
#===============================================================================
# Enter mail below to receive real-time email alerts
# e.g., 'email@gmail.com'
MAIL = ''
# ON/OFF for mail feature. Enter True to turn on the email alert feature.
ALERT = False
# Simple log to log the counting data
Log = False
# Auto run/Schedule the software to run at your desired time
Scheduler = False
# Auto stop the software after certain a time/hours
Timer = False
#===============================================================================
#===============================================================================