Skip to content

Commit

Permalink
Minor Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-sincek committed Sep 25, 2024
1 parent d324336 commit 202312f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ python3 -m pip install --upgrade build

python3 -m build

python3 -m pip install dist/google_chad-6.3-py3-none-any.whl
python3 -m pip install dist/google_chad-6.4-py3-none-any.whl
```

## Shortest Possible
Expand Down Expand Up @@ -279,7 +279,7 @@ Additionally, to avoid hitting rate limits on platforms like [Instagram's](https
## Usage

```fundamental
Chad v6.3 ( github.com/ivan-sincek/chad )
Chad v6.4 ( github.com/ivan-sincek/chad )
Usage: chad -q queries [-s site ] [-x proxies ] [-o out ]
Example: chad -q queries.txt [-s *.example.com] [-x proxies.txt] [-o results.json]
Expand Down Expand Up @@ -346,7 +346,7 @@ DEBUG
```

```fundamental
Chad Extractor v6.3 ( github.com/ivan-sincek/chad )
Chad Extractor v6.4 ( github.com/ivan-sincek/chad )
Usage: chad-extractor -t template -res results -o out [-s sleep] [-rs random-sleep]
Example: chad-extractor -t template.json -res chad_results -o report.json [-s 1.5 ] [-rs ]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "google-chad"
version = "6.3"
version = "6.4"
authors = [{ name = "Ivan Sincek" }]
description = "Not another Google Dorking tool."
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ dependencies = [
"asyncio>=3.4.3",
"colorama>=0.4.6",
"datetime>=5.2",
"nagooglesearch>=7.1",
"nagooglesearch>=7.2",
"playwright>=1.47.0",
"regex>=2023.8.8",
"requests>=2.31.0",
Expand Down
8 changes: 4 additions & 4 deletions src/chad/chad.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ def run(self):
error = client.get_current_error()
if error:
termcolor.cprint(error, "yellow")
if error == client.get_init_error():
if error == "INIT_ERROR":
exit_program = True
elif error == client.get_requests_error() or error == client.get_rate_limit_error():
elif error == "REQUESTS_ERROR" or error == "429_TOO_MANY_REQUESTS":
if entry["proxy"]:
remove_proxy = True
else:
Expand Down Expand Up @@ -337,7 +337,7 @@ def remove_proxy(self, proxy):
class MyArgParser(argparse.ArgumentParser):

def print_help(self):
print("Chad v6.3 ( github.com/ivan-sincek/chad )")
print("Chad v6.4 ( github.com/ivan-sincek/chad )")
print("")
print("Usage: chad -q queries [-s site ] [-x proxies ] [-o out ]")
print("Example: chad -q queries.txt [-s *.example.com] [-x proxies.txt] [-o results.json]")
Expand Down Expand Up @@ -568,7 +568,7 @@ def main():
if validate.run():
print("###########################################################################")
print("# #")
print("# Chad v6.3 #")
print("# Chad v6.4 #")
print("# by Ivan Sincek #")
print("# #")
print("# Search Google Dorks like Chad. #")
Expand Down
4 changes: 2 additions & 2 deletions src/chad_extractor/chad_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ def __page_block(self, request):
class MyArgParser(argparse.ArgumentParser):

def print_help(self):
print("Chad Extractor v6.3 ( github.com/ivan-sincek/chad )")
print("Chad Extractor v6.4 ( github.com/ivan-sincek/chad )")
print("")
print("Usage: chad-extractor -t template -res results -o out [-s sleep] [-rs random-sleep]")
print("Example: chad-extractor -t template.json -res chad_results -o report.json [-s 1.5 ] [-rs ]")
Expand Down Expand Up @@ -1103,7 +1103,7 @@ def main():
if validate.run():
print("###########################################################################")
print("# #")
print("# Chad Extractor v6.3 #")
print("# Chad Extractor v6.4 #")
print("# by Ivan Sincek #")
print("# #")
print("# Extract and validate data from Chad results or plaintext files. #")
Expand Down

0 comments on commit 202312f

Please sign in to comment.