Emo Resolvers ToolKit 09-03-2014, 03:28 PM
#1
Don't hate guys I am new to python just thought I would make this as I did not see one in this section 
Hope it helps someone

Hope it helps someone
Code:
# Emo Lookup AIO
# Coded by HeyiTzEmo
# Inspired by Hatsune Miku - https://www.sinister.ly/Thread-Make-you-own-Skype-Resolver-API
# Using http://abrasivecraft.com API
# Greets to Duubz, inhalery and the rest of Sinisterly!
#Import
import urllib2
#Menu
print('Welcome to EMO Lookup AIO')
print('Here are your options:')
print()
print('1) Skype Resolver')
print('2) CloudFlare Resolver')
print('3) Phone Lookup')
print('4) IP2Skype *BUGGY*')
print('5) GeoIP')
print('6) Exit')
print()
choice = input('Please choose a option: ')
choice = int(choice)
msg = 'This could take a few moments its never a crash'
loop = 1
while loop == 1:
choice = input('Please choose a option: ')
choice = int(choice)
msg = 'This could take a few moments its never a crash'
if choice == 1:
ALIAS = raw_input('Please enter alias: ')
print(msg)
response = urllib2.urlopen('http://abrasivecraft.com/api.php?cmd=10&username=' + ALIAS)
page = response.read()
print page
elif choice == 2:
CF = raw_input('Please enter without http://: ')
print(msg)
response = urllib2.urlopen('http://abrasivecraft.com/api.php?cmd=1&domain=' + CF)
page = response.read()
print page
elif choice == 3:
CELL = raw_input('Please enter cell # without country code: ')
print(msg)
response = urllib2.urlopen('http://abrasivecraft.com/api.php?cmd=6&phone=' + CELL)
page = response.read()
print page
elif choice == 4:
IPSK = raw_input('Please enter IP to match skypes: ')
print(msg)
response = urllib2.urlopen('http://abrasivecraft.com/api.php?cmd=5&ip=' + IPSK)
page = response.read()
print page
elif choice == 5:
GEO = raw_input('Please enter IP to locate: ')
print(msg)
response = urllib2.urlopen('http://abrasivecraft.com/api.php?cmd=4&host=' + GEO)
page = response.read()
print page
elif choice == 6:
loop = 0
else:
print('Incorrect Input Enter Valid Option')

![[+]](https://sinister.li/images/modern/collapse_collapsed.png)
![[Image: jWSyE88.png]](http://i.imgur.com/jWSyE88.png)