Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Commit fadddd3

Browse files
committed
Some code optimizations and README changes
1 parent 13eedbb commit fadddd3

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@ The process begins by utilizing the [Mails.org](https://mails.org/) service to o
1313
## Features
1414

1515
- Be able to prompt to change to your own password instead of using the default one.
16+
- Password complexity checker for custom password.
1617
- Error handling.
1718
- Bypass Cloudflare's bot check.
1819
- The script does all the job itself, including the captcha (which in the past you need to do it manually)
1920
- No webdriver required
2021
- Fast execution time
2122

22-
> **Warning**
23-
> It is important to note that excessive usage of this tool may result in rate limiting by the API or, in severe cases, IP blocking. To avoid these potential consequences, it is recommended to limit the number of usage. (Maybe 5 times every 10 minutes?)
24-
2523

2624
## Installation / Usage
2725

main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from DrissionPage import Chromium, ChromiumOptions
88
from lib.lib import Main, CloudflareBypasser
99

10+
1011
warnings.filterwarnings("ignore", category=TqdmExperimentalWarning)
1112

1213

@@ -23,21 +24,20 @@ async def main():
2324
"\033[1m"
2425
"\n(RECOMMENDED) Press enter in order to use the default password"
2526
"\033[0m"
26-
"\nIf you prefer to use your own password, do make sure that you password fulfill the below requirements:\n- Use at least 8 characters\n- Use a lowercase letter\n- Use an uppercase letter\n- Use at least 1 special character (!@#$%...)\n- Use at least 1 number\nPassword: "
27+
"\nIf you prefer to use your own password, do make sure that your password fulfill the below requirements:\n- Use at least 8 characters\n- Use a lowercase letter\n- Use an uppercase letter\n- Use at least 1 special character (!@#$%...)\n- Use at least 1 number\nPassword: "
2728
)
2829
or "Qing762.chy"
2930
)
3031
if passw != "Qing762.chy":
3132
result = await lib.checkPassword(passw)
3233
print(result)
33-
if not result:
34-
break
35-
elif "does not meet the requirements" not in result:
34+
if "does not meet the requirements" not in result:
3635
break
3736
else:
3837
break
3938

4039
accounts = []
40+
4141
while True:
4242
executionCount = input(
4343
"\nNumber of accounts to generate (Default: 1): "

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.92
1+
v3.93

0 commit comments

Comments
 (0)