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


Python inputs.Clean方法代碼示例

本文整理匯總了Python中haystack.inputs.Clean方法的典型用法代碼示例。如果您正苦於以下問題:Python inputs.Clean方法的具體用法?Python inputs.Clean怎麽用?Python inputs.Clean使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在haystack.inputs的用法示例。


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

示例1: create_spelling_suggestion

# 需要導入模塊: from haystack import inputs [as 別名]
# 或者: from haystack.inputs import Clean [as 別名]
def create_spelling_suggestion(self, query_string):
        spelling_suggestion = None
        reader = self.index.reader()
        corrector = reader.corrector(self.content_field_name)
        cleaned_query = force_text(query_string)

        if not query_string:
            return spelling_suggestion

        # Clean the string.
        for rev_word in self.RESERVED_WORDS:
            cleaned_query = cleaned_query.replace(rev_word, '')

        for rev_char in self.RESERVED_CHARACTERS:
            cleaned_query = cleaned_query.replace(rev_char, '')

        # Break it down.
        query_words = cleaned_query.split()
        suggested_words = []

        for word in query_words:
            suggestions = corrector.suggest(word, limit=1)

            if len(suggestions) > 0:
                suggested_words.append(suggestions[0])

        spelling_suggestion = ' '.join(suggested_words)
        return spelling_suggestion 
開發者ID:infinity1207,項目名稱:thirtylol,代碼行數:30,代碼來源:whoosh_cn_backend.py


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