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.061
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

Forum statistics

Threads
426,783
Messages
7,185,618
Members
179,133
Latest member
77betprome

Most viewed of week

Most discussed of week

Most viewed of week

Most discussed of week

Back
Top Bottom