So I tried to get a host name from an IP address following this example
Thus, I wrote up this little snippet of code trying to reproduce their results
import socket
print(socket.gethostbyaddr('69.59.196.211'))
Yet the output to this particular piece of code is the following:
('peak-colo-196-211.peak.org', [], ['69.59.196.211'])
I'm completely at a loss as to why I'm not receiving the proper host name (or at least stackoverflow.com like in the example)
I'm certain I'm missing something exceptionally silly, but I've had difficulty finding an answer. I recognize that the provided example is old, but I get similarly crude/cryptic results no matter what I try. If someone could explain this to me I'd be extremely appreciative.