Updated script that can be controled by Nodejs web app
This commit is contained in:
2
lib/python3.13/site-packages/numpy/strings/__init__.py
Normal file
2
lib/python3.13/site-packages/numpy/strings/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
from numpy._core.strings import __all__, __doc__
|
||||
from numpy._core.strings import *
|
53
lib/python3.13/site-packages/numpy/strings/__init__.pyi
Normal file
53
lib/python3.13/site-packages/numpy/strings/__init__.pyi
Normal 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]
|
Reference in New Issue
Block a user