MCPcopy Create free account
hub / github.com/daniel2005d/mapXplore / get_md5

Method get_md5

utils/utils.py:145–149  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

143class 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
151class CastDB:
152 def cast_column(column_name, data_type):

Callers 5

_gethashMethod · 0.80
get_structureMethod · 0.80
saveMethod · 0.80
convert_to_jsonMethod · 0.80
convert_to_csvMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected