-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.py
45 lines (35 loc) · 1.29 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin python3
# Import Functions From Modules
from requests import get
from colorama import Fore
from bs4 import BeautifulSoup
# Important Variables
singleLineBreck = "\n"
blue = Fore.BLUE
yellow = Fore.YELLOW
green = Fore.GREEN
cyan = Fore.CYAN
red = Fore.RED
# Main Class
class ExtractorClass:
def __init__(self, geturlFromUser: str):
self.__geturlFromUser = geturlFromUser
def sendRequestFunction(self) -> BeautifulSoup:
try:
reqs = get(self.__geturlFromUser)
soup = BeautifulSoup(reqs.text, "html.parser")
return soup
except Exception as error:
pass
def cliPrinterFunction(self, mainResponse: BeautifulSoup) -> None:
try:
geturlFromUsers = []
for link in mainResponse.find_all('a'):
print(f"[*] Link: {link.get('href')}")
except AttributeError:
print(f"{red}{singleLineBreck}Enter geturlFromUser With https:// [ - example: https://{geturlFromUser} -] ")
if __name__ == '__main__':
geturlFromUser = input(f"{blue} [habib{yellow}@{blue}linux]─ {yellow}$ {cyan}Enter here: {green}")
extractor = ExtractorClass(geturlFromUser)
mainResponse = extractor.sendRequestFunction()
extractor.cliPrinterFunction(mainResponse)