Skip to content

Instantly share code, notes, and snippets.

@ariespinoteau
Last active November 11, 2019 09:09
Show Gist options
  • Save ariespinoteau/01bbd5c7e338dbce370aef25dedad058 to your computer and use it in GitHub Desktop.
Save ariespinoteau/01bbd5c7e338dbce370aef25dedad058 to your computer and use it in GitHub Desktop.
Obtain public IP #server-side
# Obtain public IP
from requests import get
ip = get('https://api.ipify.org').text
print 'My public IP address is:', ip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment