Skip to content

Commit 6e8c515

Browse files
committed
Bumped versions in pagodo.py and ghdb_scraper.py because of requests version bump
1 parent 5e0e187 commit 6e8c515

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

ghdb_scraper.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
#!/usr/bin/env python
2-
32
# Standard Python libraries.
43
import argparse
54
import json
65
import urllib3
76

7+
88
# Third party Python libraries.
99
from bs4 import BeautifulSoup
1010
import requests
1111

12+
1213
# Custom Python libraries.
1314

1415

15-
__version__ = "1.1.0"
16+
__version__ = "1.1.1"
17+
1618

1719
"""
1820
Dork dictionary example:
@@ -162,13 +164,11 @@ def retrieve_google_dorks(
162164
print(f"[*] Total Google dorks retrieved: {total_dorks}")
163165

164166
# Package up a nice dictionary to return.
165-
# fmt: off
166167
ghdb_dict = {
167168
"total_dorks": total_dorks,
168169
"extracted_dorks": extracted_dorks,
169170
"category_dict": category_dict,
170171
}
171-
# fmt: on
172172

173173
return ghdb_dict
174174

pagodo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Custom Python libraries.
2020

2121

22-
__version__ = "2.6.2"
22+
__version__ = "2.6.3"
2323

2424

2525
class Pagodo:

0 commit comments

Comments
 (0)