(file_path)
| 9 | return hashlib.md5(content.encode('utf-8')).hexdigest() |
| 10 | |
| 11 | def hashFile(file_path): |
| 12 | f = open(file_path, 'r', encoding='utf-8') |
| 13 | return hashString(f.read()) |
| 14 | |
| 15 | # parse file |
| 16 | def stringClean(string:str): |
nothing calls this directly
no test coverage detected