mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
20 lines
703 B
Cython
20 lines
703 B
Cython
# cython: embedsignature=True
|
|
from ..orth cimport is_alpha, is_ascii, is_digit, is_lower, is_punct, is_space
|
|
from ..orth cimport is_title, is_upper, like_url, like_number
|
|
from ..typedefs cimport flags_t
|
|
|
|
|
|
def get_flags(unicode string):
|
|
cdef flags_t flags = 0
|
|
flags |= is_alpha(string) << IS_ALPHA
|
|
flags |= is_ascii(string) << IS_ASCII
|
|
flags |= is_digit(string) << IS_DIGIT
|
|
flags |= is_lower(string) << IS_LOWER
|
|
flags |= is_punct(string) << IS_PUNCT
|
|
flags |= is_space(string) << IS_SPACE
|
|
flags |= is_title(string) << IS_TITLE
|
|
flags |= is_upper(string) << IS_UPPER
|
|
flags |= like_url(string) << LIKE_URL
|
|
flags |= like_number(string) << LIKE_NUM
|
|
return flags
|