how to find the ip address of a phone number
print('this isnt posible')
how to find the ip address of a phone number
print('this isnt posible')
Get IP address
from netifaces import interfaces, ifaddresses, AF_INET
for ifaceName in interfaces():
addresses = [i['addr'] for i in ifaddresses(ifaceName).setdefault(AF_INET, [{'addr':'No IP addr'}] )]
print('%s: %s' % (ifaceName, ', '.join(addresses)))
>>>
lo: 127.0.0.1
enp30s0: No IP addr
wlp31s0: 192.168.1.56
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us