ttl255 发表于 2015-1-27 18:18:23

抓谷歌HOST的脚本



刷个存在感
写个脚本玩下
效果如下
JJ的网址提供的地址




#!/usr/bin/env python
#-*- coding:utf-8 -*-

#google live host

import urllib2
import re

q = re.compile(r'''(?<![\.\d])(?:\d{1,3}\.){3}\d{1,3}(?![\.\d])''')

html = urllib2.urlopen("http://googless.sinaapp.com/index.php").read()

match = q.findall(html)
matchs = []

for i in match:
    if i not in matchs:
      matchs.append(i)

for id in matchs:
    print id


JJ 我帮你打广告

blck 发表于 2015-1-27 21:16:33

虽然很简单,学以致用

lushaoyong 发表于 2015-1-27 21:51:37

:)看看学习学习

huoquan 发表于 2015-1-28 10:09:45

简单   基础学习了

弥勒佛 发表于 2015-1-30 13:02:25

简单实用

ran 发表于 2015-1-30 22:15:42

lz又来分享好东东了我快收藏谢谢lz
页: [1]
查看完整版本: 抓谷歌HOST的脚本