Skip to content

Commit

Permalink
Small Update
Browse files Browse the repository at this point in the history
Removing redundant `argparse` dependency. Version Bump.
  • Loading branch information
ivan-sincek committed May 11, 2024
1 parent 8db6463 commit 2098e9a
Show file tree
Hide file tree
Showing 4 changed files with 9 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-5.6-py3-none-any.whl
python3 -m pip install dist/google_chad-5.7-py3-none-any.whl
```

## Shortest Possible
Expand Down Expand Up @@ -247,7 +247,7 @@ Additionally, to avoid hitting e.g. [Instagram's](https://www.instagram.com) rat
## Usage

```fundamental
Chad v5.6 ( github.com/ivan-sincek/chad )
Chad v5.7 ( 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 @@ -314,7 +314,7 @@ DEBUG
```

```fundamental
Chad Extractor v5.6 ( github.com/ivan-sincek/chad )
Chad Extractor v5.7 ( github.com/ivan-sincek/chad )
Usage: chad-extractor -t template -res results -o out [-th threads] [-r retries] [-w wait]
Example: chad-extractor -t template.json -res chad_results -o results_report.json [-th 10 ] [-r 5 ] [-w 10 ]
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 = "5.6"
version = "5.7"
authors = [{ name = "Ivan Sincek" }]
description = "Not another Google Dorking tool."
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = ["argparse>=1.4.0", "asyncio>=3.4.3", "colorama>=0.4.6", "datetime>=5.0", "nagooglesearch>=6.9", "playwright>=1.40.0", "regex>=2022.4.24", "requests>=2.27.1", "termcolor>=1.1.0"]
dependencies = ["asyncio>=3.4.3", "colorama>=0.4.6", "datetime>=5.0", "nagooglesearch>=6.9", "playwright>=1.40.0", "regex>=2022.4.24", "requests>=2.27.1", "termcolor>=1.1.0"]

[project.urls]
"Homepage" = "https://github.com/ivan-sincek/chad"
Expand Down
4 changes: 2 additions & 2 deletions src/chad/chad.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def show(self):
class MyArgParser(argparse.ArgumentParser):

def print_help(self):
print("Chad v5.6 ( github.com/ivan-sincek/chad )")
print("Chad v5.7 ( 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 @@ -562,7 +562,7 @@ def main():
if validate.run():
print("###########################################################################")
print("# #")
print("# Chad v5.6 #")
print("# Chad v5.7 #")
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 @@ -581,7 +581,7 @@ def __get_report(self, plaintext = False, main = True):
class MyArgParser(argparse.ArgumentParser):

def print_help(self):
print("Chad Extractor v5.6 ( github.com/ivan-sincek/chad )")
print("Chad Extractor v5.7 ( github.com/ivan-sincek/chad )")
print("")
print("Usage: chad-extractor -t template -res results -o out [-th threads] [-r retries] [-w wait]")
print("Example: chad-extractor -t template.json -res chad_results -o results_report.json [-th 10 ] [-r 5 ] [-w 10 ]")
Expand Down Expand Up @@ -804,7 +804,7 @@ def main():
if validate.run():
print("###########################################################################")
print("# #")
print("# Chad Extractor v5.6 #")
print("# Chad Extractor v5.7 #")
print("# by Ivan Sincek #")
print("# #")
print("# Extract and validate data from Chad results. #")
Expand Down

0 comments on commit 2098e9a

Please sign in to comment.