码迷,mamicode.com
首页 > 其他好文 > 详细

筛选网址

时间:2014-08-16 13:43:30      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   div   line   log   

#!/usr/bin/env python
#!-*-coding=utf-8-*-
import re

fp=open("/home/xyt/桌面/erp_access.log","r")

str=fp.readline()
while str:
        str=fp.readline()
        result=re.search("\"http([a-zA-Z0-9\:\/\.])*\"",str)
        ignore=(r"http://192.168.9.8:99/left.php",
                r"http://192.168.9.8:99/top.php",
                r"http://113.98.247.92:99/top.php",
                r"http://113.98.247.92:99/left.php",
                r"http://113.98.247.92:99/products.php",
                r"http://192.168.9.8:99/login.php",
                r"http://113.98.247.92:99/login.php",
                r"http://192.168.9.8:99/main.php",
                r"http://113.98.247.92:99/main.php",
                )
        if result!=None:
                if result.group() not in ignore:
                        print result.group()

 

筛选网址,布布扣,bubuko.com

筛选网址

标签:style   blog   http   color   ar   div   line   log   

原文地址:http://www.cnblogs.com/canbefree/p/3916284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!