当前位置: 首页>>代码示例>>Python>>正文


Python EnchantStr.encode方法代码示例

本文整理汇总了Python中enchant.utils.EnchantStr.encode方法的典型用法代码示例。如果您正苦于以下问题:Python EnchantStr.encode方法的具体用法?Python EnchantStr.encode怎么用?Python EnchantStr.encode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在enchant.utils.EnchantStr的用法示例。


在下文中一共展示了EnchantStr.encode方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: set_param

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
    def set_param(self,name,value):
        """Set the value of a named parameter on this broker.

        Parameters are used to provide runtime information to individual
        provider backends.  For example, the myspell provider will search
        any directories given in the "enchant.myspell.dictionary.path"
        parameter when looking for its dictionary files.
        """
        name = EnchantStr(name)
        value = EnchantStr(value)
        _e.broker_set_param(self._this,name.encode(),value.encode())
开发者ID:DKaman,项目名称:pyenchant,代码行数:13,代码来源:__init__.py

示例2: store_replacement

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def store_replacement(self, mis, cor):
     """Store a replacement spelling for a miss-spelled word.
     
     This method makes a suggestion to the spellchecking engine that the 
     miss-spelled word <mis> is in fact correctly spelled as <cor>.  Such
     a suggestion will typically mean that <cor> appears early in the
     list of suggested spellings offered for later instances of <mis>.
     """
     self._check_this()
     mis = EnchantStr(mis)
     cor = EnchantStr(cor)
     _e.dict_store_replacement(self._this, mis.encode(), cor.encode())
开发者ID:obengwilliam,项目名称:searchjob,代码行数:14,代码来源:__init__.py

示例3: add_to_pwl

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def add_to_pwl(self,word):
     """Add a word to the user's personal word list."""
     warnings.warn("Dict.add_to_pwl is deprecated, please use Dict.add",
                   category=DeprecationWarning,stacklevel=2)
     self._check_this()
     word = EnchantStr(word)
     _e.dict_add_to_pwl(self._this,word.encode())
开发者ID:DKaman,项目名称:pyenchant,代码行数:9,代码来源:__init__.py

示例4: set_ordering

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def set_ordering(self,tag,ordering):
     """Set dictionary preferences for a language.
     
     The Enchant library supports the use of multiple dictionary programs
     and multiple languages.  This method specifies which dictionaries
     the broker should prefer when dealing with a given language.  'tag'
     must be an appropriate language specification and 'ordering' is a
     string listing the dictionaries in order of preference.  For example
     a valid ordering might be "aspell,myspell,ispell".
     The value of 'tag' can also be set to "*" to set a default ordering
     for all languages for which one has not been set explicitly.
     """
     self._check_this()
     tag = EnchantStr(tag)
     ordering = EnchantStr(ordering)
     _e.broker_set_ordering(self._this,tag.encode(),ordering.encode())
开发者ID:DKaman,项目名称:pyenchant,代码行数:18,代码来源:__init__.py

示例5: is_in_session

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def is_in_session(self,word):
     """Check whether a word is in the session list."""
     warnings.warn("Dict.is_in_session is deprecated, "\
                   "please use Dict.is_added",
                   category=DeprecationWarning,stacklevel=2)
     self._check_this()
     word = EnchantStr(word)
     return _e.dict_is_in_session(self._this,word.encode())
开发者ID:DKaman,项目名称:pyenchant,代码行数:10,代码来源:__init__.py

示例6: get_param

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
    def get_param(self,name):
        """Get the value of a named parameter on this broker.

        Parameters are used to provide runtime information to individual
        provider backends.  See the method 'set_param' for more details.
        """
        name = EnchantStr(name)
        return name.decode(_e.broker_get_param(self._this,name.encode()))
开发者ID:DKaman,项目名称:pyenchant,代码行数:10,代码来源:__init__.py

示例7: suggest

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def suggest(self,word):
     """Suggest possible spellings for a word.
     
     This method tries to guess the correct spelling for a given
     word, returning the possibilities in a list.
     """
     self._check_this()
     word = EnchantStr(word)
     suggs = _e.dict_suggest(self._this,word.encode())
     return [word.decode(w) for w in suggs]
开发者ID:arkershaw,项目名称:pyenchant,代码行数:12,代码来源:__init__.py

示例8: dict_exists

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def dict_exists(self,tag):
     """Check availability of a dictionary.
     
     This method checks whether there is a dictionary available for
     the language specified by 'tag'.  It returns True if a dictionary
     is available, and False otherwise.
     """
     self._check_this()
     tag = EnchantStr(tag)
     val = _e.broker_dict_exists(self._this,tag.encode())
     return bool(val)
开发者ID:DKaman,项目名称:pyenchant,代码行数:13,代码来源:__init__.py

示例9: _request_dict_data

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
    def _request_dict_data(self,tag):
        """Request raw C pointer data for a dictionary.

        This method call passes on the call to the C library, and does
        some internal bookkeeping.
        """
        self._check_this()
        tag = EnchantStr(tag)
        new_dict = _e.broker_request_dict(self._this,tag.encode())
        if new_dict is None:
            eStr = "Dictionary for language '%s' could not be found"
            self._raise_error(eStr % (tag,),DictNotFoundError)
        return new_dict
开发者ID:arkershaw,项目名称:pyenchant,代码行数:15,代码来源:__init__.py

示例10: suggest

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def suggest(self,word):
     """Suggest possible spellings for a word.
     
     This method tries to guess the correct spelling for a given
     word, returning the possibilities in a list.
     """
     self._check_this()
     word = EnchantStr(word)
     # Enchant asserts that the word is non-empty.
     # Check it up-front to avoid nasty warnings on stderr.
     if len(word) == 0:
         raise ValueError("can't suggest spellings for empty string")
     suggs = _e.dict_suggest(self._this,word.encode())
     return [word.decode(w) for w in suggs]
开发者ID:DKaman,项目名称:pyenchant,代码行数:16,代码来源:__init__.py

示例11: check

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def check(self,word):
     """Check spelling of a word.
     
     This method takes a word in the dictionary language and returns
     True if it is correctly spelled, and false otherwise.
     """
     self._check_this()
     word = EnchantStr(word)
     val = _e.dict_check(self._this,word.encode())
     if val == 0:
         return True
     if val > 0:
         return False
     self._raise_error()
开发者ID:arkershaw,项目名称:pyenchant,代码行数:16,代码来源:__init__.py

示例12: request_pwl_dict

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def request_pwl_dict(self,pwl):
     """Request a Dict object for a personal word list.
     
     This method behaves as 'request_dict' but rather than returning
     a dictionary for a specific language, it returns a dictionary
     referencing a personal word list.  A personal word list is a file
     of custom dictionary entries, one word per line.
     """
     self._check_this()
     pwl = EnchantStr(pwl)
     new_dict = _e.broker_request_pwl_dict(self._this,pwl.encode())
     if new_dict is None:
         eStr = "Personal Word List file '%s' could not be loaded"
         self._raise_error(eStr % (pwl,))
     d = Dict(False)
     d._switch_this(new_dict,self)
     return d
开发者ID:arkershaw,项目名称:pyenchant,代码行数:19,代码来源:__init__.py

示例13: check

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def check(self,word):
     """Check spelling of a word.
     
     This method takes a word in the dictionary language and returns
     True if it is correctly spelled, and false otherwise.
     """
     self._check_this()
     word = EnchantStr(word)
     # Enchant asserts that the word is non-empty.
     # Check it up-front to avoid nasty warnings on stderr.
     if len(word) == 0:
         raise ValueError("can't check spelling of empty string")
     val = _e.dict_check(self._this,word.encode())
     if val == 0:
         return True
     if val > 0:
         return False
     self._raise_error()
开发者ID:DKaman,项目名称:pyenchant,代码行数:20,代码来源:__init__.py

示例14: is_removed

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def is_removed(self,word):
     """Check whether a word is in the personal exclude list."""
     self._check_this()
     word = EnchantStr(word)
     return _e.dict_is_removed(self._this,word.encode())
开发者ID:DKaman,项目名称:pyenchant,代码行数:7,代码来源:__init__.py

示例15: remove_from_session

# 需要导入模块: from enchant.utils import EnchantStr [as 别名]
# 或者: from enchant.utils.EnchantStr import encode [as 别名]
 def remove_from_session(self,word):
     """Add a word to the session exclude list."""
     self._check_this()
     word = EnchantStr(word)
     _e.dict_remove_from_session(self._this,word.encode())
开发者ID:DKaman,项目名称:pyenchant,代码行数:7,代码来源:__init__.py


注:本文中的enchant.utils.EnchantStr.encode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。