The `huggingface` PyPI package (version 0.0.1) is a meta-package designed to simplify installation by pulling in the main Hugging Face libraries: `transformers`, `datasets`, and `huggingface_hub`. It does not provide its own direct API functionality. This package typically has a very low release cadence, primarily updating its dependencies.
pip install huggingfaceVerified import paths — ran on the pinned version, not inferred.
The `huggingface` package itself does not expose an API. This quickstart demonstrates common usage of the `transformers` library (specifically the `pipeline` abstraction), which is automatically installed as a dependency by `huggingface`. All direct functionality will come from `transformers`, `datasets`, or `huggingface_hub`.
Always import classes and functions directly from `transformers`, `datasets`, or `huggingface_hub`, not `huggingface`.
Identify which specific Hugging Face library provides the desired functionality (e.g., `transformers` for `pipeline`, `datasets` for `Dataset`) and import from that package.