This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from hashlib import md5 | |
| import pandas as pd | |
| from typing import Optional, Iterable | |
| def get_md5_from_series(input_iterable: Iterable) -> str: | |
| """ | |
| Create a MD5 hash from an Iterable, typically a row from a Pandas ``DataFrame``, but can be any | |
| Iterable object instance such as a list, tuple or Pandas ``Series``. | |
| Args: |
OlderNewer