Skip to content

Commit

Permalink
Merge branch 'master' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Smanar authored Apr 7, 2019
2 parents fbfd0c6 + 45fba74 commit f6ce1dd
Show file tree
Hide file tree
Showing 4 changed files with 693 additions and 16 deletions.
6 changes: 5 additions & 1 deletion API_KEY.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

import sys
import urllib,json
from urllib import request, parse
try:
from urllib import request, parse
except:
print('This tool is for python 3, use instead "python3 API_KEY.py" !')
sys.exit(0)

try:
ip = sys.argv[1]
Expand Down
Loading

0 comments on commit f6ce1dd

Please sign in to comment.