No Description
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.

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)