Skip to content

Instantly share code, notes, and snippets.

@suganoo
Last active October 26, 2017 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suganoo/679e2a3d11f8fa7783ab070dbb7eebb3 to your computer and use it in GitHub Desktop.
Save suganoo/679e2a3d11f8fa7783ab070dbb7eebb3 to your computer and use it in GitHub Desktop.
ホスト名を取得
import socket
import os
import platform
print socket.getfqdn()
# 以降は同じみたい
print socket.gethostname()
print os.uname()[1]
print platform.uname()[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment