1234567891011121314151617181920212223242526272829303132333435 |
- class RestAPI(object):
- """
- This Class is representing the rest API with all its configuration.
- """
- def __init__(self, password_protected=None, login=None, password=None, active=None, port=None):
- """
- :param password_protected: If true, the rest api will ask for an authentication
- :param login: login used if auth is activated
- :param password: password used if auth is activated
- :param active: specify if the rest api is loaded on start with Kalliope
- """
- self.password_protected = password_protected
- self.login = login
- self.password = password
- self.active = active
- self.port = port
- def __str__(self):
- return "%s: RestAPI: password_protected: %s, login: %s, " \
- "password: %s, active: %s, port: %s" % (self.__class__.__name__,
- self.password_protected,
- self.login,
- self.password,
- self.active,
- self.port)
- def __eq__(self, other):
- """
- This is used to compare 2 objects
- :param other:
- :return:
- """
- return self.__dict__ == other.__dict__
|