-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlimiter.py
More file actions
29 lines (26 loc) · 843 Bytes
/
limiter.py
File metadata and controls
29 lines (26 loc) · 843 Bytes
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
from lib.common import *
from lib import log
__version__ = 1.0
BANNER = f"""{c.LIGHTCYAN_EX}
** ** ** **
/** // // /**
/** ** ********** ** ****** ***** ******
/** /**//**//**//**/**///**/ **///**//**//*
/** /** /** /** /**/** /** /******* /** /
/** /** /** /** /**/** /** /**//// /**
/********/** *** /** /**/** //** //******/***
//////// // /// // // // // ////// ///{c.RESET}
V{__version__}
"""
if __name__ == '__main__':
print(BANNER)
from lib.request import *
#url = input('URL -> ').strip() or None
if url == None:
print("Not input valid.")
else:
try:
main()
except KeyboardInterrupt:
print("\r")
print(log.error("Stopped!"), end="\r")