Skip to content

Commit 42802e4

Browse files
Updated crawl_processor.py [added PageSearch basic support]
1 parent 71b67b3 commit 42802e4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

datagather_modules/crawl_processor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def ip_gather(short_domain):
1818
ip_address = socket.gethostbyname(short_domain)
1919
return ip_address
2020

21-
2221
def whois_gather(short_domain):
2322
try:
2423
w = whois.whois(short_domain)
@@ -54,7 +53,6 @@ def subdomains_gather(url, short_domain):
5453
subdomains_amount = len(subdomains)
5554
return subdomains, subdomains_amount
5655

57-
5856
def sm_gather(url):
5957
response = requests.get(url)
6058
soup = BeautifulSoup(response.text, 'html.parser')

0 commit comments

Comments
 (0)