• python和搜索


    # -*- coding: UTF-8 -*-
    import re
    
    
    # 搜索逻辑
    def querylogic(list):
        query = {}
        if len(list) > 1 or len(list[0].split(':')) > 1:
            for _ in list:
                if _.find(':') > -1:
                    if _.split(':')[0] == 'port':
                        query['port'] = int(_.split(':')[1])
                    elif _.split(':')[0] == 'banner':
                        zhPattern = re.compile(u'[u4e00-u9fa5]+')
                        contents = _.split(':')[1]
                        match = zhPattern.search(contents)
                        # 如果没有中文用全文索引
                        if match:
                            query['banner'] = {"$regex": _.split(':')[1], '$options': 'i'}
                        else:
                            query['$text'] = {'$search': _.split(':')[1]}
                    elif _.split(':')[0] == 'ip':
                        ip = _.split(':')[1]
                        query['ip'] = {"$regex": ip}
                    elif _.split(':')[0] == 'server':
                        query['server'] = _.split(':')[1].lower()
                    elif _.split(':')[0] == 'title':
                        query['webinfo.title'] = {"$regex": _.split(':')[1], '$options': 'i'}
                    elif _.split(':')[0] == 'tag':
                        query['webinfo.tag'] = _.split(':')[1].lower()
                    elif _.split(':')[0] == 'hostname':
                        query['hostname'] = {"$regex": _.split(':')[1], '$options': 'i'}
                    elif _.split(':')[0] == 'all':
                        filter = []
                        for i in ('ip', 'banner', 'port', 'time', 'webinfo.tag', 'webinfo.title', 'server', 'hostname'):
                            filter.append({i: {"$regex": _.split(':')[1], '$options': 'i'}})
                        query['$or'] = filter
                    else:
                        query[_.split(':')[0]] = _.split(':')[1]
        else:
            filter = []
            for i in ('ip', 'banner', 'port', 'time', 'webinfo.tag', 'webinfo.title', 'server', 'hostname'):
                filter.append({i: {"$regex": list[0], '$options': 'i'}})
            query['$or'] = filter
        return query
  • 相关阅读:
    添加unique约束
    设置自增列的步长和起始值
    创建外键及主键
    绘制折线图和叠加区域图
    绘制饼图
    生成叠加柱状图和水平柱状图
    随机生成带有颜色的验证码
    os模块与操作系统的交互
    TDate赋值给Variant时注意的问题
    线程中的异常处理
  • 原文地址:https://www.cnblogs.com/bayueman/p/6612288.html
Copyright © 2020-2023  润新知