免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4391 | 回复: 4
打印 上一主题 下一主题

python取本机IP [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-23 15:28 |只看该作者 |倒序浏览
最近学习python,略有心得,不敢藏私,分享给大家。
我只是搜集,整理而已,如有引用,出处一概不可考。

取本机IP

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])

#get_ip_address('lo')环回地址
#get_ip_address('eth0')主机ip地址


windows

        import re,urllib2
        from subprocess import Popen, PIPE
        print "本机的私网IP地址为:" + re.search('\d+\.\d+\.\d+\.\d+',Popen('ipconfig', stdout=PIPE).stdout.read()).group(0)
        print "本机的公网IP地址为:" + re.search('\d+\.\d+\.\d+\.\d+',urllib2.urlopen("http://www.7qiao.cn/ip.php").read()).group(0)

[ 本帖最后由 gudai 于 2008-12-23 15:32 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-12-23 15:30 |只看该作者

ImportError: No module named images 解决

ImportError: No module named images 解决
体验wxpython IN action的时候
ImportError: No module named images
替换为
import wx.py.images as images

        images.getNewBitmap
替换为
        images.getPyBitmap()

论坛徽章:
0
3 [报告]
发表于 2008-12-23 15:31 |只看该作者

python删除文件

python删除文件

import os

删除文件:
os.remove()

删除空目录:
os.rmdir()

递归删除空目录:
os.removedirs()

递归删除目录和文件(类似DOS命令DeleteTree):
方法1:自力更生,艰苦创业

# Delete everything reachable from the directory named in 'top',
# assuming there are no symbolic links.
# CAUTION:  This is dangerous!  For example, if top == '/', it
# could delete all your disk files.
import os
for root, dirs, files in os.walk(top, topdown=False):
    for name in files:
        os.remove(os.path.join(root, name))
    for name in dirs:
        os.rmdir(os.path.join(root, name))

方法2:前人栽树,后人乘凉
import shutil
shutil.rmtree()

一行搞定 __import__('shutil').rmtree()

论坛徽章:
0
4 [报告]
发表于 2008-12-23 18:00 |只看该作者
gnubuntu 该用户已被删除
5 [报告]
发表于 2008-12-29 07:57 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP