python 获取本机环境信息

Posted 小草csm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 获取本机环境信息相关的知识,希望对你有一定的参考价值。

一、函数

1.socket.gethostname():不带任何参数,返回一个字符串(主机名),通常不完整。比如csm.example.com 只会返回csm

2.socket.getfqdn():带一个参数,返回完整主机名

 

二、代码

import sys,socket

def getipaddrs(hostname):
	"""Given a host name,perform a standard (forward) lookup and return a list of ip addressfor that host."""
	result=socket.getaddrinfo(hostname,None,0,socket.SOCK_STREAM)
	return [x[4][0] for x in result]

#calling gethostname() returns the name of the local machine
hostname=socket.gethostname()
print "hostname is:",hostname

#try to get the fully qualified name:
print "Fully_qualified name:",socket.getfqdn(hostname)
try:
	print "IP address:", ", ".join(getipaddrs(hostname))
except socket.gaierror,e:
	print "error"

三、执行结果

[[email protected] testpython]# python host.py 
hostname is: csm
Fully_qualified name: dragoneyes-PC.workgroup
IP address: 192.168.155.9

 

以上是关于python 获取本机环境信息的主要内容,如果未能解决你的问题,请参考以下文章

python:使用netifaces模块获取本机IP网关等信息

python获取linux本机IP

python优雅获取本机 IP 方法

python 跨平台获取网卡信息和本机ip地址

设置和获取与执行环境相关的信息?

常用python日期日志获取内容循环的代码片段