aboutsummaryrefslogtreecommitdiffstats
path: root/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'server.py')
-rw-r--r--server.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/server.py b/server.py
index 2c53d0c..8da5411 100644
--- a/server.py
+++ b/server.py
@@ -279,6 +279,16 @@ if __name__ == '__main__':
print('Starting httpserver at http://%s:%s/' %
(ip_server, settings.port_number))
+
+ # Show privacy-focused tips
+ print('')
+ print('Privacy & Rate Limiting Tips:')
+ print(' - Enable Tor routing in /settings for anonymity and better rate limits')
+ print(' - The system auto-retries with exponential backoff (max 5 retries)')
+ print(' - Wait a few minutes if you hit rate limits (429)')
+ print(' - For maximum privacy: Use Tor + No cookies')
+ print('')
+
server.serve_forever()
# for uwsgi, gunicorn, etc.