-
python3-fsspec+hdfs-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in hdfs extras requires for python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-fsspec+http-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in http extras requires for python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-fsspec+libarchive-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in libarchive extras requires for
python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-fsspec+sftp-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in sftp extras requires for python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-fsspec+smb-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in smb extras requires for python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-fsspec+ssh-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in ssh extras requires for python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-fsspec+tqdm-2025.3.2-1.lbn36.noarch
This is a metapackage bringing in tqdm extras requires for python3-fsspec.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-griffe-1.7.3-1.lbn36.noarch
Griffe
Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API.
Griffe, pronounced "grif" (/ɡʁif/), is a french word that means "claw",
but also "signature" in a familiar way. "On reconnaît bien là sa griffe."
Installation
With pip:
pip install griffe
With pipx:
python3.8 -m pip install --user pipx
pipx install griffe
Usage
On the command line, pass the names of packages to the griffe dump command:
$ griffe dump httpx fastapi
{
"httpx": {
"name": "httpx",
...
},
"fastapi": {
"name": "fastapi",
...
}
}
See the Dumping data section for more examples.
Or pass a relative path to the griffe check command:
$ griffe check mypackage --verbose
mypackage/mymodule.py:10: MyClass.mymethod(myparam):
Parameter kind was changed:
Old: positional or keyword
New: keyword-only
For src layouts:
$ griffe check --search src mypackage --verbose
src/mypackage/
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-groq-0.24.0-1.lbn36.noarch
Groq Python API library
The Groq Python library provides convenient access to the Groq REST API from any Python 3.8+
application. The library includes type definitions for all request params and response fields,
and offers both synchronous and asynchronous clients powered by httpx.
It is generated with Stainless.
Documentation
The REST API documentation can be found on console.groq.com. The full API of this library can be found in api.md.
Usage
The full API of this library can be found in api.md.
import os
from groq import Groq
client = Groq(
api_key=os.environ.get("GROQ_API_KEY"), # This is the default and can be omitted
)
chat_completion = client.chat.completions.create(
messages=[
{
"role": "user",
"content": "Explain the importance of low latency LLMs",
}
],
model="llama3-8b-8192",
)
print(chat_completion.choices[0].message.content)
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-huggingface-hub-0.30.2-1.lbn36.noarch
The huggingface_hub library allows you to interact with the Hugging Face Hub, a
machine learning platform for creators and collaborators. Discover pre-trained
models and datasets for your projects or play with the hundreds of machine
learning apps hosted on the Hub. You can also create and share your own models
and datasets with the community. The huggingface_hub library provides a simple
way to do all these things with Python.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36