Skip to content

Instantly share code, notes, and snippets.

@alex21289
alex21289 / get_IP.py
Last active March 8, 2020 12:07
Network/Python
import socket
def main():
def get_IP():
try:
host_name = socket.gethostname()
host_ip = socket.gethostbyname(host_name)
host_fqdn = socket.getfqdn()