Files
edward/utils/utils.py
konjacpotato 5267db8a0d
All checks were successful
Gitea Actions Demo / deploy (push) Successful in 15s
import edward
2025-11-12 21:19:26 +08:00

6 lines
130 B
Python

def get_md5(url) -> str:
import hashlib
m = hashlib.md5()
m.update(url.encode('utf-8'))
return m.hexdigest()