How can i get a list of the ip address or host names from a local network easily in python?
It would be best if it was multi-platform, but it needs to work on OS X first, then others follow.
Edit: By local i mean all active addresses within a local network, such as 192.168.xxx.xxx
So, if the ip address of my computer (within the local network) is 192.168.1.1, and i have three other connected computers, i would want it to return the ip addresses 192.168.1.2, 192.168.1.3, 192.168.1.4, and possibly their hostnames
