抓谷歌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 我帮你打广告
虽然很简单,学以致用 :)看看学习学习 简单 基础学习了 简单实用 lz又来分享好东东了我快收藏谢谢lz
页:
[1]