Skip to content

Commit

Permalink
Removed Redundant Dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-sincek committed Sep 28, 2024
1 parent c2fa2e6 commit cf602f1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 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.5-py3-none-any.whl
python3 -m pip install dist/google_chad-6.6-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.5 ( github.com/ivan-sincek/chad )
Chad v6.6 ( 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.5 ( github.com/ivan-sincek/chad )
Chad Extractor v6.6 ( 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
3 changes: 1 addition & 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.5"
version = "6.6"
authors = [{ name = "Ivan Sincek" }]
description = "Not another Google Dorking tool."
readme = "README.md"
Expand All @@ -18,7 +18,6 @@ dependencies = [
"alive-progress>=3.1.5",
"asyncio>=3.4.3",
"colorama>=0.4.6",
"datetime>=5.2",
"nagooglesearch>=7.3",
"playwright>=1.47.0",
"regex>=2023.8.8",
Expand Down
4 changes: 2 additions & 2 deletions src/chad/chad.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def remove_proxy(self, proxy):
class MyArgParser(argparse.ArgumentParser):

def print_help(self):
print("Chad v6.5 ( github.com/ivan-sincek/chad )")
print("Chad v6.6 ( 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.5 #")
print("# Chad v6.6 #")
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.5 ( github.com/ivan-sincek/chad )")
print("Chad Extractor v6.6 ( 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.5 #")
print("# Chad Extractor v6.6 #")
print("# by Ivan Sincek #")
print("# #")
print("# Extract and validate data from Chad results or plaintext files. #")
Expand Down

0 comments on commit cf602f1

Please sign in to comment.