當前位置: 首頁>>代碼示例>>Python>>正文


Python Filter.Filter類代碼示例

本文整理匯總了Python中Filter.Filter的典型用法代碼示例。如果您正苦於以下問題:Python Filter類的具體用法?Python Filter怎麽用?Python Filter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Filter類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: onBtnLoadCur

 def onBtnLoadCur(self):
     filter = Filter()
     filter.exec()
     if filter.ret:
         print(filter.sel)
         self.plotCur = filter.sel
     pass
開發者ID:HenricusRex,項目名稱:TMV3,代碼行數:7,代碼來源:Viewer.py

示例2: get_movies

    def get_movies(self, page=0, limit=5, filter=None, order='m.title ASC'):
        sql = "select m.title, m.description, m.airdate, m.full_path, m.parent_dir, m.added, m.id, datetime(m.watched, 'localtime'), m.runtime, m.poster from movie m"

        if filter is not None:
            _f = Filter("movie", {"movie": "m"})
            sql += _f.genFilter(filter)

        sql += " ORDER BY %s LIMIT ?, ?" % order

        movies = self.sql.select(sql, (page * limit, limit,))

        html = []
        for movie in movies:
            content = {}
            content["id"] = movie[6]
            content["title"] = movie[0] if movie[0] is not None else movie[4]
            content["desc"] = movie[1] if not movie[1] is None else ""
            content["path"] = "file:///opt/sybhttpd/localhost.drives/NETWORK_SHARE/mediaui/Movies/%s" % (movie[3])
            content["fanart"] = movie[9] if movie[9] is not None else "movie_fanart.png"
            content["added"] = self.convert_date_to_dayssince(movie[5])
            content["watchedicon"] = "/images/unwatched.png" if movie[7] is None else "/images/watched.png"
            content["watcheddate"] = self.convert_watched_to_dayssince(movie[7])
            content["fulltitle"] = content["title"]
            content["runtime"] = self.convert_runtime_seconds(movie[8])
            content["year"] = self.strip_year_from_date(movie[2])

            if content["desc"].__len__() > 300:
                content["desc"] = content["desc"][:300] + "..."

            if content["title"].__len__() > 30:
                content["title"] = content["title"][:30] + "..."

            html.append(content)

        return html
開發者ID:chick3n,項目名稱:pchMediaGen,代碼行數:35,代碼來源:Content.py

示例3: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = ["Exclude loans with public records"]

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:7,代碼來源:PublicRecordsOnFile.py

示例4: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = [12, 24, 60]

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:7,代碼來源:MonthsSinceLastDelinquency.py

示例5: main

def main():
    HOME_PATH = "D:\\SENTIFI_DATA\\filter\\"

    FILE_PATH_TO_JSON_MESSAGES = HOME_PATH + "messages.json"
    FILE_PATH_TO_JSON_CRITERIA = HOME_PATH + "criteria.json"

    json_messages = IOUtils().read_json_data_from_file(FILE_PATH_TO_JSON_MESSAGES)
    json_criteria = IOUtils().read_json_data_from_file(FILE_PATH_TO_JSON_CRITERIA)

    list_criteria = []
    for criteria in json_criteria:
        item = SentifiSearchItem(criteria)
        list_criteria.append(item)

    list_messages = []
    for json_item in json_messages:
        message = SentifiMessage(json_item)
        list_messages.append(message)

    #For each message, compare its soid to criteria's soid
    for message in list_messages:
        for criteria in list_criteria:
            if message.soid == criteria.soid:
                filter = Filter(message, criteria)
                filter.apply()

    for msg in list_messages:
        message.display()

    return list_messages
開發者ID:glorevenhite,項目名稱:sentifi,代碼行數:30,代碼來源:MessageFilter.py

示例6: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = [float(n) for n in range(5000, 30000, 5000)]

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:7,代碼來源:AmountRequested.py

示例7: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = [1.0, 5.0, 10.0]

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:7,代碼來源:EarliestCreditLine.py

示例8: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        purpose_bitmap = {'other':              1 << 0,
                          'debt_consolidation': 1 << 1,
                          'educational':        1 << 2,
                          'credit_card':        1 << 3,
                          'car':                1 << 4,
                          'home_improvement':   1 << 5,
                          'small_business':     1 << 6,
                          'vacation':           1 << 7,
                          'moving':             1 << 8,
                          'wedding':            1 << 9,
                          'house':              1 << 10,
                          'medical':            1 << 11,
                          'major_purchase':     1 << 12,
                          'renewable_energy':   1 << 13,
                          }

        self.conversion_table = purpose_bitmap.copy()

        options = self.powerBitSet(purpose_bitmap.values())

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:25,代碼來源:LoanPurpose.py

示例9: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = list(range(25, 250, 50))

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:7,代碼來源:WordsInDescription.py

示例10: getGrayscaleImagesImp

 def getGrayscaleImagesImp(images):
     if isinstance(images, collections.Iterable):
         grayscaleImages = []
         for image in images:
             grayscaleImages.append(Filter.getGrayscale(image))
         return grayscaleImages
     else:
         return Filter.getGrayscale(images)
開發者ID:hoergems,項目名稱:pythonstuff,代碼行數:8,代碼來源:ImageProc.py

示例11: getCannyImp

 def getCannyImp(images):
     if isinstance(images, collections.Iterable):
         cannyImages = []
         for image in images:
             cannyImages.append(Filter.getCanny(image))
         return cannyImages
     else:
         return Filter.getCanny(images)
開發者ID:hoergems,項目名稱:pythonstuff,代碼行數:8,代碼來源:ImageProc.py

示例12: __init__

    def __init__(self, args, current=None):
        '''
        Construct a set similar to this based on the passed in grades
         'A',
         'AB',
         'ABC',
         'ABCD',
         'ABCDE',
         'ABCDEF',
         'ABCDEFG',
         'B',
         'BC',
         'BCD',
         'BCDE',
         'BCDEF',
         'BCDEFG',
         'C',
         'CD',
         'CDE',
         'CDEF',
         'CDEFG',
         'D',
         'DE',
         'DEF',
         'DEFG',
         'E',
         'EF',
         'EFG',
         'F',
         'FG',
         'G'
        '''

        options = []
        grades_bitmap = {'A': 1 << 0,
                         'B': 1 << 1,
                         'C': 1 << 2,
                         'D': 1 << 3,
                         'E': 1 << 4,
                         'F': 1 << 5,
                         'G': 1 << 6,
                        }

        self.conversion_table = grades_bitmap.copy()
        self.reverse_table = {v:k for k, v in grades_bitmap.items()}
        num_grades = len(args.grades)
        for i in range(1, num_grades + 1):
            for j in range(num_grades):
                if (j + i) <= num_grades:
                    grades = args.grades[j:j + i]
                    grades_bit_value = 0
                    for grade in grades:
                        grades_bit_value += grades_bitmap[grade]
                    options.append(grades_bit_value)
                    self.conversion_table[grades] = grades_bit_value
                    self.reverse_table[grades_bit_value] = grades

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:58,代碼來源:CreditGrade.py

示例13: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = [0, 1, 2, 3, 4, 5]

        Filter.__init__(self, args, options, current)

        self.reverse_table = ["MORTGAGE", "OWN", "RENT", "OTHER", "NONE", "NULL"]
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:9,代碼來源:HomeOwnership.py

示例14: onBtnLoadRef

    def onBtnLoadRef(self):
        filter = Filter()
        filter.exec()
        if filter.ret:
            print(filter.sel)
            self.plotsRef = filter.sel


        pass
開發者ID:HenricusRex,項目名稱:TMV3,代碼行數:9,代碼來源:Viewer.py

示例15: __init__

    def __init__(self, args, current=None):
        '''
        Constructor
        '''
        options = [
                    1 << 0,  # 0
                    1 << 0 | 1 << 1 | 1 << 2 | 1 << 3,  # 0, 1-3
                    1 << 0 | 1 << 1 | 1 << 2 | 1 << 3,  # 0, 1-3, 4
                    1 << 1 | 1 << 2 | 1 << 3,  # 1-3
                    1 << 1 | 1 << 2 | 1 << 3 | 1 << 4,  # 1-3, 4
                    1 << 4,  # 4
                    1 << 5 | 1 << 6 | 1 << 7 | 1 << 8 | 1 << 9 | 1 << 10 | 1 << 11,  # 5 - 11
                    ]

        Filter.__init__(self, args, options, current)
開發者ID:dayyan,項目名稱:LendingClub,代碼行數:15,代碼來源:Delinquencies.py


注:本文中的Filter.Filter類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。