NotLetters Password Changer is a powerful, high-speed tool designed to change passwords for NotLetters accounts. It supports various formats of email-password combinations and leverages multithreading to deliver exceptional performance. Whether you're handling single or bulk requests, this tool provides smooth, error-handled execution with beautiful log output.
- Multithreading Support: Lightning-fast password changing, even for large batches.
- Flexible Email Format Handling: Supports various formats including
mail|pass
,mail:pass
, andmail:pass:value
. Thevalue
field allows the user to add random or custom data as needed. - Detailed Console Logs: Clear, easy-to-read logs to keep track of operations.
- Smart Error Handling: Thoughtful error messages and recovery mechanisms to ensure smooth operation.
- Password Options: You can choose to generate a random password or set a custom one.
-
Install dependencies:
pip install -r requirements.txt
-
Get your Api-Key:
- Head over to NotLetters API Dashboard to get your API key.
-
Configure your API key and settings in
config.json
:{ "Main": { "Threads": 1, "Api-Key": "" }, "Password": { "Generate_password": true, "new_password": "" } }
- In the
Password
section:- Set
"Generate_password"
totrue
if you want to generate a random password. - Set
"Generate_password"
tofalse
and provide your desired password in"new_password"
if you want to use a custom one.
- Set
- In the
-
Run the tool:
python main.py
Format | Example |
---|---|
mail:pass |
[email protected]:password123 |
mail:pass:value |
[email protected]:password123:random_value |
Modify config.json
to add your API key and set the number of threads as needed:
{
"Main": {
"Threads": 1,
"Api-Key": "your-api-key"
},
"Password": {
"Generate_password": true,
"new_password": ""
}
}