diff options
| author | Tianhao Wang <shrik3@riseup.net> | 2023-03-28 15:11:11 +0200 |
|---|---|---|
| committer | Tianhao Wang <shrik3@riseup.net> | 2023-03-28 15:11:11 +0200 |
| commit | b99178fd7b03a7ebd1f65b8b60814a32f13f2333 (patch) | |
| tree | 0f7aa2afe2aab2d1e19ea885a8e47f48f788cd02 /config.py | |
| parent | 7291100dc681fcb640d7f9b6e9cf7239587c5849 (diff) | |
scan timeline, formatting
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)") + |
