文奇的文字游戏vinge.blog.chinaunix.net
vinge
全部博文(79)
杂项收集(2)
嵌入式开发(2)
可爱的python(1)
2015年(1)
2014年(1)
2013年(2)
2012年(1)
2011年(5)
2010年(2)
2009年(6)
2008年(20)
2007年(27)
2006年(14)
kevin200
一鸣雨
thisway_
浪花小雨
格伯纳
moyaoyi
11937341
bzhao
dean8816
winjune
Dandy_Zh
分类: Python/Ruby
2010-06-07 22:31:24
window: import socket socket.gethostbyname(socket.gethostname()) socket.gethostbyname_ex(socket.gethostname()) linux: import socket import fcntl import struct def get_ip_address(ifname): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) return socket.inet_ntoa(fcntl.ioctl( s.fileno(), 0x8915, # SIOCGIFADDR struct.pack('256s', ifname[:15]) )[20:24]) def getHwAddr(ifname): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) info = fcntl.ioctl(s.fileno(), 0x8927, struct.pack('256s', ifname[:15])) return ''.join(['%02x:' % ord(char) for char in info[18:24]])[:-1]
from distutils.core import setup import py2exe setup( # targets to build windows = ["wxCNC.py"] )
上一篇:淘得《告别中世纪--五四文献选粹与解读》
下一篇:微博妙语录
登录 注册