Leyk remote control text client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. import report
  4. secret = None
  5. # TCP-Server
  6. #
  7. server_ip = '127.0.0.1'
  8. server_port = 10001
  9. # Logging
  10. #
  11. APP_NAME = 'leyk_client'
  12. LOGTARGET = 'logfile' # possible choices are: 'logfile' or 'stdout'
  13. LOGLVL = 'DEBUG'
  14. LOGHOST = 'localhost'
  15. LOGPORT = 19996
  16. formatter = report.LONG_FMT