[Solved] Find password by username
I am supposing your csv will be like this: user1, hash_pass_u1 user2, hash_pass_u2 user3, hash_pass_u3 … Just one note before the solution. You are importing the CSV module of Python and you did not use it in your code, such a silly import, just use it. The solution is simple import csv file=”yourcsv.csv” found = … Read more