$ curl ip.pr1v.net
3.17.191.196
<php $ip = file_get_contents("http://ip.pr1v.net/"); echo "your IP is: $ip";
import urllib ip = urllib.request.urlopen('http://ip.pr1v.net').read().strip() print( "Your IP is %s" % ip )
ip := http_get("http://ip.pr1v.net/") echo ip