Restore 0.1.5 version from stash
This commit is contained in:
@@ -0,0 +1,118 @@
|
||||
from typing import Any
|
||||
from typing import List
|
||||
from typing import Dict
|
||||
from typing import Union
|
||||
from typing import Callable
|
||||
from typing import Optional
|
||||
from typing import Text
|
||||
|
||||
from pypinyin.constants import Style
|
||||
from pypinyin.converter import Converter
|
||||
|
||||
|
||||
TStyle = Union[Style, Text]
|
||||
TErrors = Union[Callable[[Text], Text], Text]
|
||||
TPinyinResult = List[List[Text]]
|
||||
|
||||
|
||||
def load_single_dict(pinyin_dict: Dict[int, Text],
|
||||
style: str = ...) -> None: ...
|
||||
|
||||
|
||||
def load_phrases_dict(phrases_dict: Dict[Text, List[List[Text]]],
|
||||
style: str = ...
|
||||
) -> None: ...
|
||||
|
||||
|
||||
def to_fixed(pinyin: Text, style: TStyle,
|
||||
strict: bool = ...) -> Text: ...
|
||||
|
||||
|
||||
def _handle_nopinyin_char(chars: Text, errors: TErrors = ...
|
||||
) -> Optional[Text]: ...
|
||||
|
||||
|
||||
def handle_nopinyin(chars: Text, errors: TErrors = ..., heteronym: bool = ...
|
||||
) -> List[List[Text]]: ...
|
||||
|
||||
|
||||
def single_pinyin(han: Text, style: TStyle, heteronym: bool,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...
|
||||
) -> List[List[Text]]: ...
|
||||
|
||||
|
||||
def phrase_pinyin(phrase: Text,
|
||||
style: TStyle,
|
||||
heteronym: bool,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...
|
||||
) -> List[List[Text]]: ...
|
||||
|
||||
|
||||
def _pinyin(words: Text,
|
||||
style: TStyle,
|
||||
heteronym: bool,
|
||||
errors: TErrors,
|
||||
strict: bool = ...
|
||||
) -> List[List[Text]]:...
|
||||
|
||||
|
||||
def pinyin(hans: Union[List[Text], Text],
|
||||
style: TStyle = ...,
|
||||
heteronym: bool = ...,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...,
|
||||
v_to_u: bool = ...,
|
||||
neutral_tone_with_five: bool = ...
|
||||
) -> List[List[Text]]: ...
|
||||
|
||||
|
||||
def slug(hans: Union[List[Text], Text],
|
||||
style: TStyle = ...,
|
||||
heteronym: bool = ...,
|
||||
separator: Text = ...,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...
|
||||
) -> Text: ...
|
||||
|
||||
|
||||
def lazy_pinyin(hans: Union[List[Text], Text],
|
||||
style: TStyle = ...,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...,
|
||||
v_to_u: bool = ...,
|
||||
neutral_tone_with_five: bool = ...,
|
||||
tone_sandhi: bool = ...
|
||||
) -> List[Text]: ...
|
||||
|
||||
|
||||
class Pinyin(object):
|
||||
|
||||
def __init__(self, converter: Converter = ..., **kwargs: Any) -> None:
|
||||
self._converter = ... # type: Converter
|
||||
|
||||
def pinyin(self, hans: Union[List[Text], Text],
|
||||
style: TStyle = ...,
|
||||
heteronym: bool = ...,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...,
|
||||
**kwargs: Any
|
||||
) -> TPinyinResult: ...
|
||||
|
||||
def lazy_pinyin(self, hans: Union[List[Text], Text],
|
||||
style: TStyle = ...,
|
||||
errors: TErrors = ...,
|
||||
strict: bool = ...,
|
||||
**kwargs: Any
|
||||
) -> List[Text]: ...
|
||||
|
||||
def pre_seg(self, hans: Text,
|
||||
**kwargs: Any) -> Optional[List[Text]]: ...
|
||||
|
||||
def post_seg(self, hans: Text, seg_data: List[Text],
|
||||
**kwargs: Any) -> Optional[List[Text]]: ...
|
||||
|
||||
def seg(self, hans: Text, **kwargs: Any) -> List[Text]: ...
|
||||
|
||||
def get_seg(self, **kwargs: Any) -> Callable[[Text], List[Text]]: ...
|
||||
Reference in New Issue
Block a user