mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-16 18:05:04 +00:00
11 lines
830 B
Python
11 lines
830 B
Python
|
def ratio(s1: str, s2: str) -> int: ...
|
||
|
def partial_ratio(s1: str, s2: str) -> int: ...
|
||
|
def token_sort_ratio(s1: str, s2: str, force_ascii: bool = ..., full_process: bool = ...) -> int: ...
|
||
|
def partial_token_sort_ratio(s1: str, s2: str, force_ascii: bool = ..., full_process: bool = ...) -> int: ...
|
||
|
def token_set_ratio(s1: str, s2: str, force_ascii: bool = ..., full_process: bool = ...) -> int: ...
|
||
|
def partial_token_set_ratio(s1: str, s2: str, force_ascii: bool = ..., full_process: bool = ...) -> int: ...
|
||
|
def QRatio(s1: str, s2: str, force_ascii: bool = ..., full_process: bool = ...) -> int: ...
|
||
|
def UQRatio(s1: str, s2: str, full_process: bool = ...) -> int: ...
|
||
|
def WRatio(s1: str, s2: str, force_ascii: bool = ..., full_process: bool = ...) -> int: ...
|
||
|
def UWRatio(s1: str, s2: str, full_process: bool = ...) -> int: ...
|