I'm writing a chat program for a local network. I would like be able to identify computers and get the user-set computer name with Python.
Use socket
and its gethostname()
functionality. This will get the hostname
of the computer where the Python interpreter is running:
import socket
print(socket.gethostname())