Updated script that can be controled by Nodejs web app

This commit is contained in:
mac OS
2024-11-25 12:24:18 +07:00
parent c440eda1f4
commit 8b0ab2bd3a
8662 changed files with 1803808 additions and 34 deletions

View File

@ -0,0 +1,2 @@
from numpy._core.strings import __all__, __doc__
from numpy._core.strings import *

View File

@ -0,0 +1,53 @@
from numpy._core.strings import (
equal as equal,
not_equal as not_equal,
greater_equal as greater_equal,
less_equal as less_equal,
greater as greater,
less as less,
add as add,
multiply as multiply,
mod as mod,
isalpha as isalpha,
isalnum as isalnum,
isdigit as isdigit,
isspace as isspace,
isnumeric as isnumeric,
isdecimal as isdecimal,
islower as islower,
isupper as isupper,
istitle as istitle,
str_len as str_len,
find as find,
rfind as rfind,
index as index,
rindex as rindex,
count as count,
startswith as startswith,
endswith as endswith,
decode as decode,
encode as encode,
expandtabs as expandtabs,
center as center,
ljust as ljust,
rjust as rjust,
lstrip as lstrip,
rstrip as rstrip,
strip as strip,
zfill as zfill,
upper as upper,
lower as lower,
swapcase as swapcase,
capitalize as capitalize,
title as title,
replace as replace,
join as join,
split as split,
rsplit as rsplit,
splitlines as splitlines,
partition as partition,
rpartition as rpartition,
translate as translate,
)
__all__: list[str]