Request Xin tools lọc email | pass 8 char

Joined
Jul 2, 2016
Messages
8
Reactions
3
MR
0.000
Chào bà con .

Mới mua đc 1 triệu mail | pass. mình muốn 1 cái tools lọc pass 8 kí tự thật nhanh . mình biết rất nhiều người ghét thái độ post topic của mình. nhưng ai có thì xin hãy làm ơn. giúp tôi. cám ơn bà con
 

zray3979

Newbie
Joined
Jan 15, 2024
Messages
0
Reactions
0
MR
0.062
1705509233063.png
mình xin với
 

3Anh

Newbie
Joined
Jul 31, 2022
Messages
6
Reactions
4
MR
0.328
Python code cho bác nào cần

Python:
def filter_emails(input_file, output_file):
    with open(input_file, 'r') as file:
        with open(output_file, 'w') as output:
            for line in file:
                # Splitting the line into email and password
                parts = line.strip().split('|')
                if len(parts) == 2:
                    email, password = parts
                    # Checking if the password length is greater than 8
                    if len(password) > 8:
                        output.write(line)

# Usage
input_file = 'email.txt'
output_file = 'filtered_emails.txt'
filter_emails(input_file, output_file)
 

Announcements

Today's birthdays

Forum statistics

Threads
427,587
Messages
7,213,402
Members
179,822
Latest member
godbex
Back
Top Bottom