Skip to content

Commit e99e7b1

Browse files
authored
Merge pull request #102 from opsdisk/dependabot/pip/requests-2.32.2
Bump requests from 2.31.0 to 2.32.2
2 parents 7b81d4b + 6e8c515 commit e99e7b1

3 files changed

Lines changed: 6 additions & 6 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:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
beautifulsoup4==4.12.3
2-
requests==2.31.0
2+
requests==2.32.2
33
yagooglesearch==1.10.0

0 commit comments

Comments
 (0)