(text)
| 143 | class Hashing: |
| 144 | @staticmethod |
| 145 | def get_md5(text)->str: |
| 146 | if isinstance(text, bytes): |
| 147 | return hashlib.md5(text).hexdigest() |
| 148 | else: |
| 149 | return hashlib.md5(text.encode()).hexdigest() |
| 150 | |
| 151 | class CastDB: |
| 152 | def cast_column(column_name, data_type): |
no outgoing calls
no test coverage detected