python
imouren
这个作者很懒,什么都没留下…
展开
-
python linux下IP操作函数
import socketimport fcntlimport struct def get_ip_address(ifname='eth0'): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) ipaddr = socket.inet_ntoa(fcntl.ioctl( s.fileno(),原创 2015-09-02 17:07:15 · 1154 阅读 · 0 评论 -
python 读取git图片每一帧
def processImage(infile): try: im = Image.open(infile) except IOError: print "Cant load", infile sys.exit(1) i = 0 mypalette = im.getpalette() try: wh原创 2015-09-16 17:49:33 · 813 阅读 · 0 评论