MCPcopy
hub / github.com/huggingface/huggingface_hub

github.com/huggingface/huggingface_hub @v1.22.0 sqlite

repository ↗ · DeepWiki ↗ · release v1.22.0 ↗
5,291 symbols 23,396 edges 282 files 2,110 documented · 40%
README
<img alt="huggingface_hub library logo" src="https://huggingface.co/datasets/huggingface/documentation-images/raw/main/huggingface_hub.svg" width="352" height="59" style="max-width: 100%">
















<i>The official Python client for the Huggingface Hub.</i>







<a href="https://huggingface.co/docs/huggingface_hub/en/index"><img alt="Documentation" src="https://img.shields.io/website/http/huggingface.co/docs/huggingface_hub/index.svg?down_color=red&down_message=offline&up_message=online&label=doc"></a>
<a href="https://github.com/huggingface/huggingface_hub/releases"><img alt="GitHub release" src="https://img.shields.io/github/release/huggingface/huggingface_hub.svg"></a>
<a href="https://github.com/huggingface/huggingface_hub"><img alt="PyPi version" src="https://img.shields.io/pypi/pyversions/huggingface_hub.svg"></a>
<a href="https://pypi.org/project/huggingface-hub"><img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/huggingface_hub"></a>
<a href="https://codecov.io/gh/huggingface/huggingface_hub"><img alt="Code coverage" src="https://codecov.io/gh/huggingface/huggingface_hub/branch/main/graph/badge.svg?token=RXP95LE2XL"></a>

English | Deutsch | Français | हिंदी | 한국어 | 中文 (简体) ಕನ್ನಡ


Documentation: https://hf.co/docs/huggingface_hub

Source Code: https://github.com/huggingface/huggingface_hub


Welcome to the huggingface_hub library

The huggingface_hub library allows you to interact with the Hugging Face Hub, a platform democratizing open-source Machine Learning for creators and collaborators. Discover pre-trained models and datasets for your projects or play with the thousands of machine learning apps hosted on the Hub. You can also create and share your own models, datasets and demos with the community. The huggingface_hub library provides a simple way to do all these things with Python.

Key features

Installation

Install the huggingface_hub package with pip:

pip install huggingface_hub

We recommend using uv for a fast and reliable install:

uv pip install huggingface_hub

In order to keep the package minimal by default, huggingface_hub comes with optional dependencies useful for some use cases. For example, if you want to use the MCP module, run:

pip install "huggingface_hub[mcp]"

To learn more about installation and optional dependencies, check out the installation guide.

Quick start

Download files

Download a single file

from huggingface_hub import hf_hub_download

hf_hub_download(repo_id="tiiuae/falcon-7b-instruct", filename="config.json")

Or an entire repository

from huggingface_hub import snapshot_download

snapshot_download("stabilityai/stable-diffusion-2-1")

Files will be downloaded in a local cache folder. More details in this guide.

Login

The Hugging Face Hub uses tokens to authenticate applications (see docs). To log in your machine, run the following CLI:

hf auth login
# or using an environment variable
hf auth login --token $HUGGINGFACE_TOKEN

Create a repository

from huggingface_hub import create_repo

create_repo(repo_id="super-cool-model")

Upload files

Upload a single file

from huggingface_hub import upload_file

upload_file(
    path_or_fileobj="/home/lysandre/dummy-test/README.md",
    path_in_repo="README.md",
    repo_id="lysandre/test-model",
)

Or an entire folder

from huggingface_hub import upload_folder

upload_folder(
    folder_path="/path/to/local/space",
    repo_id="username/my-cool-space",
    repo_type="space",
)

For details in the upload guide.

Integrating to the Hub.

We're partnering with cool open source ML libraries to provide free model hosting and versioning. You can find the existing integrations here.

The advantages are:

  • Free model or dataset hosting for libraries and their users.
  • Built-in file versioning, even with very large files, thanks to a git-based approach.
  • In-browser widgets to play with the uploaded models.
  • Anyone can upload a new model for your library, they just need to add the corresponding tag for the model to be discoverable.
  • Fast downloads! We use Cloudfront (a CDN) to geo-replicate downloads so they're blazing fast from anywhere on the globe.
  • Usage stats and more features to come.

If you would like to integrate your library, feel free to open an issue to begin the discussion. We wrote a step-by-step guide with ❤️ showing how to do this integration.

Contributions (feature requests, bugs, etc.) are super welcome 💙💚💛💜🧡❤️

Everyone is welcome to contribute, and we value everybody's contribution. Code is not the only way to help the community. Answering questions, helping others, reaching out and improving the documentations are immensely valuable to the community. We wrote a contribution guide to summarize how to get started to contribute to this repository.

Core symbols most depended-on inside this repo

get
called by 490
src/huggingface_hub/repocard_data.py
pop
called by 297
src/huggingface_hub/repocard_data.py
get
called by 267
src/huggingface_hub/utils/_xet.py
invoke
called by 198
src/huggingface_hub/cli/_cli_utils.py
get_session
called by 167
src/huggingface_hub/utils/_http.py
hf_raise_for_status
called by 163
src/huggingface_hub/utils/_http.py
_build_hf_headers
called by 155
src/huggingface_hub/hf_api.py
get_hf_api
called by 118
src/huggingface_hub/cli/_cli_utils.py

Shape

Method 2,742
Function 1,614
Class 874
Route 61

Languages

Python100%

Modules by API surface

tests/test_hf_api.py412 symbols
tests/test_cli.py339 symbols
src/huggingface_hub/hf_api.py262 symbols
tests/test_inference_providers.py152 symbols
tests/test_file_download.py115 symbols
tests/test_buckets_cli.py102 symbols
tests/test_inference_client.py94 symbols
tests/test_utils_strict_dataclass.py90 symbols
src/huggingface_hub/_sandbox.py89 symbols
tests/test_hf_file_system.py83 symbols
tests/test_utils_http.py78 symbols
tests/test_sandbox.py70 symbols

For agents

$ claude mcp add huggingface_hub \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact