“Получить внешний IP -адрес python” Ответ

Получить внешний 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
Joeyeyey

Получить внешний IP -адрес python

import requests
ip = requests.get('https://utilities.tk/network/info').json()['ip']

# utilities.tk is a cool API, and you can get a lot more info not just IP, checkout their github: https://github.com/oracle-hackers/utilities-api/
ProxyBlade

Ответы похожие на “Получить внешний IP -адрес python”

Вопросы похожие на “Получить внешний IP -адрес python”

Больше похожих ответов на “Получить внешний IP -адрес python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования