import peter

This commit is contained in:
konjacpotato
2025-11-12 20:42:16 +08:00
commit 8c1a740f0b
147 changed files with 2763 additions and 0 deletions

6
utils/utils.py Normal file
View File

@ -0,0 +1,6 @@
def get_md5(url) -> str:
import hashlib
m = hashlib.md5()
m.update(url.encode('utf-8'))
return m.hexdigest()