Leyk remote control text client
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.py 329B

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