暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

client.py 279B

1234567891011
  1. from lodel.auth.auth import Client
  2. class WebUiClient(Client):
  3. def __init__(self, ip, user_agent):
  4. self.__ip = ip
  5. self.__user_agent = user_agent
  6. super().__init__()
  7. def __str__(self):
  8. return "%s (%s)" % (self.__ip, self.__user_agent)