-
python3-annotated-types-0.7.0-7.lbn36.noarch
PEP-593 added typing.Annotated as a way of adding context-specific metadata to
existing types, and specifies that Annotated[T, x] should be treated as T by
any tool or library without special logic for x.
This package provides metadata objects which can be used to represent common
constraints such as upper and lower bounds on scalar values and collection
sizes, a Predicate marker for runtime checks, and descriptions of how we intend
these metadata to be interpreted. In some cases, we also note alternative
representations which do not require this package.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-ansi-0.1.3-3.lbn19.noarch
Various ANSI escape codes, used in moving the cursor in a text console or
rendering colored text with Python 3.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 19
-
python3-ansible-builder-1.2.0-1.lbn36.noarch
[,
)
message = client.messages.create(
max_tokens=1024,
messages=[
{
"role": "user",
"content": "Hello, Claude",
}
],
model="claude-3-opus-20240229",
)
print(message.content)
While you can provide an api_key keyword argument,
we recommend using python-d
Located in
LBN
/
…
/
Network Monitoring
/
BastionLinux 36
-
python3-anyascii-0.3.3-1.lbn36.noarch
AnyAscii
Unicode to ASCII transliteration
Web Demo
Converts Unicode characters to their best ASCII representation
AnyAscii provides ASCII-only replacement strings for practically all Unicode characters. Text is converted character-by-character without considering the context. The mappings for each script are based on popular existing romanization systems. Symbolic characters are converted based on their meaning or appearance. All ASCII characters in the input are left unchanged, every other character is replaced with printable ASCII characters. Unknown characters and some known characters are replaced with an empty string and removed.
from anyascii import anyascii
s = anyascii('άνθρωποι')
assert s == 'anthropoi'
Python 3.3+ compatible
pip install anyascii
FULL README
Located in
LBN
/
…
/
Business
/
BastionLinux 36