...
This commit is contained in:
parent
bc33b89fbd
commit
7e012d3c88
7
main.py
7
main.py
|
@ -19,15 +19,18 @@ def initialize():
|
||||||
|
|
||||||
|
|
||||||
def checksites(sitepath=None):
|
def checksites(sitepath=None):
|
||||||
print(f"{tools.heading('Checking Sitedata')}\n{tools.spacer}")
|
print(f"{tools.heading('Checking Site(s)')}\n{tools.spacer}")
|
||||||
|
|
||||||
sitedic = {}
|
sitedic = {}
|
||||||
|
|
||||||
|
# Find sites directory
|
||||||
if sitepath:
|
if sitepath:
|
||||||
sitedir = sitepath
|
sitedir = sitepath
|
||||||
else:
|
else:
|
||||||
rootdir = os.path.dirname(os.path.abspath(__file__))
|
rootdir = os.path.dirname(os.path.abspath(__file__))
|
||||||
sitedir = rootdir + r"\sites"
|
sitedir = rootdir + r"\sites"
|
||||||
|
|
||||||
|
# Parse all sitefiles into objects
|
||||||
for sitefile in glob.glob(sitedir + r"\*.json"):
|
for sitefile in glob.glob(sitedir + r"\*.json"):
|
||||||
asite = site.Site(sitefile)
|
asite = site.Site(sitefile)
|
||||||
|
|
||||||
|
@ -54,7 +57,9 @@ def createproxys():
|
||||||
print(f"> {Fore.MAGENTA}{one.name:10s}{Style.RESET_ALL} |"
|
print(f"> {Fore.MAGENTA}{one.name:10s}{Style.RESET_ALL} |"
|
||||||
f" {tools.keyword('PROXYIP')}({one.ip}) {tools.keyword('WORKING')}({one.isworking})")
|
f" {tools.keyword('PROXYIP')}({one.ip}) {tools.keyword('WORKING')}({one.isworking})")
|
||||||
|
|
||||||
|
# We can test our proxy using this site:
|
||||||
# one.testurl("http://www.whatismyproxy.com/")
|
# one.testurl("http://www.whatismyproxy.com/")
|
||||||
|
|
||||||
proxydic[one.name] = one
|
proxydic[one.name] = one
|
||||||
|
|
||||||
print(tools.spacer)
|
print(tools.spacer)
|
||||||
|
|
Loading…
Reference in New Issue