diff options
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8,6 +8,9 @@ TOKEN = 'token.secret' # in seconds POLL_INTERVAL = 20 +# in case of DoS, we won't handle too long a status +MAX_STATUS_LENGTH = 1024 + # account username and PW UNAME = "" PW = "" @@ -21,3 +24,4 @@ except: print("account secret not found, please manually input:") UNAME = input("username or email") PW = input("password (not concealed)") + |
