Hello,
I'm trying to use md5 in python3 using the attached code
from hashlib import md5
password = 'pa$$w0rd'
h = hashlib.md5()
print(h.hexdigest())
put it gives me this error (cannot import name 'md5')
and when i try to import hashlib only it gives this error (module 'hashlib' has no attribute 'md5')
I searched everywhere but i cant find any solution to my case