Answers for "python get your external ip"

2

get external ip python

# This example requires the requests library be installed.  You can learn more
# about the Requests library here: http://docs.python-requests.org/en/latest/

from requests import get

ip = get('https://api.ipify.org').text
print 'My public IP address is:', ip
Posted by: Guest on September-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language