""" The MIT License (MIT) Copyright (c) 2015-present Rapptz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from typing import Iterator, Tuple, Any __all__ = ( 'Author', ) class Author: """Represents a custom author. Depending on the way this object was created, some of the attributes can have a value of ``None``. .. container:: operations .. describe:: x == y Checks if two author are the same. .. describe:: x != y Checks if two author are not the same. .. describe:: iter(x) Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions. .. describe:: str(x) Returns a string representation of the author. Attributes ----------- name: :class:`str` The name of the author. steam64: :class:`str` The author's steam64 ID. avatar: :class:`str` The author's avatar URL. """ __slots__: Tuple[str, ...] = ( '_payload', 'name', 'steam64', 'avatar', ) def __init__(self, payload: dict) -> None: self._payload = payload self._from_data(payload) def _from_data(self, author: dict): self.name = author.get('name') self.steam64 = author.get('steam64') self.avatar = author.get('avatar') def __str__(self) -> str: return self.name def __repr__(self) -> str: return f'' def __eq__(self, other) -> bool: return self.name == other.name def __ne__(self, other) -> bool: return self.name != other.name def __iter__(self) -> Iterator[Tuple[str, Any]]: for attr in self.__slots__: if attr[0] != '_': value = getattr(self, attr, None) if value is not None: yield (attr, value) def to_json(self) -> dict: """:class:`dict`: Returns a JSON-compatible representation of the author.""" return self._payload