Source code for attopy.Receivable

"""The Receivable class definition."""
"""
This file is part of Atto.py.

Atto.py is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
this program. If not, see <https://www.gnu.org/licenses/>. 
"""
import datetime
from .convert import _str_to_algorithm, _timestamp_to_datetime, _raw_to_atto
from . import _format

[docs] class Receivable: # TODO: docstring def __init__(self, dict_, client): self.hash_ = dict_['hash'] self.version = dict_['version'] self.algorithm = _str_to_algorithm(dict_['algorithm']) self.public_key = dict_['publicKey'] self.timestamp = _timestamp_to_datetime(dict_['timestamp']) self.receiver_algorithm = _str_to_algorithm(dict_['receiverAlgorithm']) self.receiver_public_key = dict_['receiverPublicKey'] self.amount = _raw_to_atto(dict_['amount']) def __repr__(self): return f'<Receivable {self.hash_[0:6]}...>' def __str__(self): return (f'{_format.hash(self.hash_)} ' f'{_format.block_type("RECEIVE")}' f'{_format.amount(self.amount)} ' f'{_format.pub_key(self.public_key)} ' f'{_format.pub_key(self.receiver_public_key)} @ ' f'{_format.timestamp(self.timestamp)}')