Source code for ayx_python_sdk.core.record_packet_base

# Copyright (C) 2022 Alteryx, Inc. All rights reserved.
#
# Licensed under the ALTERYX SDK AND API LICENSE AGREEMENT;
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    https://www.alteryx.com/alteryx-sdk-and-api-license-agreement
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Record Packet Base class definition."""
import hashlib
from abc import ABC, abstractmethod
from typing import Any, TYPE_CHECKING


if TYPE_CHECKING:
    from ayx_python_sdk.core.metadata import Metadata
    import pandas as pd


[docs]class RecordPacketBase(ABC): """Abstract class that describes a record packet.""" @property @abstractmethod def metadata(self) -> "Metadata": """ Get the packet metadata. Returns ------- Metadata The metadata for records contained in the packet. """ raise NotImplementedError()
[docs] @abstractmethod def to_dataframe(self) -> "pd.DataFrame": """ Get the packet data as a dataframe. Returns ------- pd.DataFrame The dataframe that contains all records in the packet. """ raise NotImplementedError()
[docs] @classmethod @abstractmethod def from_dataframe( cls, metadata: "Metadata", df: "pd.DataFrame" ) -> "RecordPacketBase": """ Set the packet data from a dataframe. Parameters ---------- metadata The metadata for the records. df The dataframe to generate records from. """ raise NotImplementedError()
def __eq__(self, other: Any) -> bool: """ Check equality between 2 packets. Parameters ---------- other Other object to compare with this object. Returns ------- bool True if metadata and all dataframes of this record packet have the same values as the other record packet. """ if not isinstance(other, RecordPacketBase): return NotImplemented if self.metadata != other.metadata: return False import pandas as pd try: pd.testing.assert_frame_equal(self.to_dataframe(), other.to_dataframe()) except AssertionError: return False else: return True
[docs] def to_readable_string(self) -> str: """ Return the string representation of a record packet, with a human-readable pandas dataframe. Returns ------- str Human-readable form of the record packet. """ return f"Metadata: {self.metadata}\nDataframe: {self.to_dataframe()}"
[docs] def to_anonymized_string(self) -> str: """ Return the string representation of a record packet, anonymizing the data within before conversion. Returns ------- str Unique identifier generated from the data within a record packet. """ return f"Metadata: {self.metadata}\nDataframe dimensions: {self.to_dataframe().shape}\nDataframe digest: {hashlib.sha256(self.to_dataframe().values.tobytes()).hexdigest()}"
def __str__(self) -> str: """Return a string representation of a record packet, with the underlying dataframe anonymized.""" return self.to_anonymized_string()