This is a simple python script that splits a list of usn:pass into different columns in a csv file.
Main:
import pandas as pd
def split_email_password(input_file, output_file):
# Read the input file and split email:password pairs
df = pd.read_csv(input_file, sep=':', names=['Email', 'Password'])
# Write the DataFrame to an Excel file
df.to_excel(output_file, index=False)
if __name__ == "__main__":
# Put accounts.txt into the same folder as this
input_file_path = 'accounts.txt'
# This is the output file, change the name to whatever you prefer
output_file_path = 'CatnipAccounts.xlsx'
split_email_password(input_file_path, output_file_path)
print(f"Combo list has been successfully split into {output_file_path}. Happy botting! ~CatnipandMilk")
Requirements:
pip install pandas
Usage:
python split.py
????
Profit
split.py