Skip to content

Commit 68fc12d

Browse files
committed
up
1 parent 3d74b9e commit 68fc12d

13 files changed

+1450
-5
lines changed

.config.ini.swp

12 KB
Binary file not shown.

1.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from exp10it import get_http_or_https
2+
a=get_http_or_https("www.github.com")
3+
print(a)

3xp10it.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
### blog: http://3xp10it.cc
1212
#############################################################
1313
import re
14-
import os
14+
import os,sys
1515
import time
16-
os.system("pip3 install exp10it -U --no-cache-dir")
16+
17+
exp10it_module_path = os.path.expanduser("~")+"/mypypi"
18+
sys.path.insert(0, exp10it_module_path)
19+
#os.system("pip3 install exp10it -U --no-cache-dir")
1720
from exp10it import figlet2file
1821
from exp10it import exp10itScanner
1922
from exp10it import get_string_from_command
@@ -26,5 +29,8 @@
2629
a=get_string_from_command("apt list python-dnspython")
2730
if not re.search(r"python-dnspython",a,re.I):
2831
os.system("apt-get install python-dnspython")
32+
a=get_string_from_command("apt list ack")
33+
if not re.search(r"ack",a,re.I):
34+
os.system("apt-get install ack")
2935

3036
exp10itScanner()

IPProxyPool

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 7182fd73112e679ce956c9ef2dd55a995b83c3a4

0 commit comments

Comments
 (0)