File size: 21,062 Bytes
76d6ddf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | # Copyright 2025-present, the HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Contains commands to interact with buckets via the CLI."""
from typing import Annotated
import click
from huggingface_hub import logging
from huggingface_hub._buckets import (
BUCKET_PREFIX,
BucketFile,
FilterMatcher,
_parse_bucket_uri,
)
from ..hf_api import REPO_REGIONS
from ._cli_utils import (
SearchOpt,
TokenOpt,
get_hf_api,
typer_factory,
)
from ._cp import make_cp
from ._file_listing import format_size, print_file_listing
from ._framework import Argument, Option
from ._output import OutputFormat, out
logger = logging.get_logger(__name__)
buckets_cli = typer_factory(help="Commands to interact with buckets.")
@buckets_cli.command(
name="create",
examples=[
"hf buckets create my-bucket",
"hf buckets create user/my-bucket",
"hf buckets create hf://buckets/user/my-bucket",
"hf buckets create user/my-bucket --private",
"hf buckets create user/my-bucket --exist-ok",
"hf buckets create user/my-bucket --region us",
],
)
def create(
bucket_id: Annotated[
str,
Argument(
help="Bucket ID: bucket_name, namespace/bucket_name, or hf://buckets/namespace/bucket_name",
),
],
private: Annotated[
bool,
Option(
"--private",
help="Create a private bucket.",
),
] = False,
region: Annotated[
REPO_REGIONS | None,
Option(
"--region",
help="Cloud region in which to create the bucket. Can be one of 'us' or 'eu'. Requires Team plan or above.",
),
] = None,
exist_ok: Annotated[
bool,
Option(
"--exist-ok",
help="Do not raise an error if the bucket already exists.",
),
] = False,
token: TokenOpt = None,
) -> None:
"""Create a new bucket."""
api = get_hf_api(token=token)
if bucket_id.startswith(BUCKET_PREFIX):
parsed = _parse_bucket_uri(bucket_id)
if parsed.path_in_repo:
raise click.BadParameter(
f"Cannot specify a prefix for bucket creation: {bucket_id}."
f" Use namespace/bucket_name or {BUCKET_PREFIX}namespace/bucket_name."
)
bucket_id = parsed.id
bucket_url = api.create_bucket(
bucket_id,
private=private if private else None,
region=region,
exist_ok=exist_ok,
)
out.result("Bucket created", uri=bucket_url.uri.to_uri(), url=bucket_url.url)
def _is_bucket_id(argument: str) -> bool:
"""Check if argument is a bucket ID (namespace/name) vs just a namespace."""
if argument.startswith(BUCKET_PREFIX):
path = argument[len(BUCKET_PREFIX) :]
else:
path = argument
return "/" in path
@buckets_cli.command(
name="list | ls",
examples=[
"hf buckets list",
"hf buckets list huggingface",
'hf buckets list --search "my-prefix"',
"hf buckets list user/my-bucket",
"hf buckets list user/my-bucket -R",
"hf buckets list user/my-bucket -h",
"hf buckets list user/my-bucket --tree",
"hf buckets list user/my-bucket --tree -h",
"hf buckets list hf://buckets/user/my-bucket",
"hf buckets list user/my-bucket/sub -R",
],
)
def list_cmd(
argument: Annotated[
str | None,
Argument(
help=(
"Namespace (user or org) to list buckets, or bucket ID"
" (namespace/bucket_name(/prefix) or hf://buckets/...) to list files."
),
),
] = None,
human_readable: Annotated[
bool,
Option(
"--human-readable",
"-h",
help="Show sizes in human readable format.",
),
] = False,
as_tree: Annotated[
bool,
Option(
"--tree",
help="List files in tree format (only for listing files).",
),
] = False,
recursive: Annotated[
bool,
Option(
"--recursive",
"-R",
help="List files recursively (only for listing files).",
),
] = False,
search: SearchOpt = None,
token: TokenOpt = None,
) -> None:
"""List buckets or files in a bucket.
When called with no argument or a namespace, lists buckets.
When called with a bucket ID (namespace/bucket_name), lists files in the bucket.
"""
# Determine mode: listing buckets or listing files
is_file_mode = argument is not None and _is_bucket_id(argument)
if is_file_mode:
if search is not None:
raise click.BadParameter("Cannot use --search when listing files.")
_list_files(
argument=argument, # type: ignore
human_readable=human_readable,
as_tree=as_tree,
recursive=recursive,
token=token,
)
else:
_list_buckets(
namespace=argument,
search=search,
human_readable=human_readable,
as_tree=as_tree,
recursive=recursive,
token=token,
)
def _list_buckets(
namespace: str | None,
search: str | None,
human_readable: bool,
as_tree: bool,
recursive: bool,
token: str | None,
) -> None:
"""List buckets in a namespace."""
# Validate incompatible flags
if as_tree:
raise click.BadParameter("Cannot use --tree when listing buckets.")
if recursive:
raise click.BadParameter("Cannot use --recursive when listing buckets.")
# Handle hf://buckets/namespace format
if namespace is not None and namespace.startswith(BUCKET_PREFIX):
namespace = namespace[len(BUCKET_PREFIX) :]
# Strip trailing slash if any
namespace = namespace.rstrip("/")
api = get_hf_api(token=token)
items = [
{
"id": bucket.id,
"private": bucket.private,
"size": format_size(bucket.size, human_readable) if human_readable else bucket.size,
"total_files": bucket.total_files,
"created_at": bucket.created_at,
}
for bucket in api.list_buckets(namespace=namespace, search=search)
]
out.table(items, alignments={"size": "right"})
def _list_files(
argument: str,
human_readable: bool,
as_tree: bool,
recursive: bool,
token: str | None,
) -> None:
"""List files in a bucket."""
if as_tree and out.mode == OutputFormat.json:
raise click.BadParameter("Cannot use --tree with --format json.")
api = get_hf_api(token=token)
parsed = _parse_bucket_uri(argument)
items = list(
api.list_bucket_tree(
parsed.id,
prefix=parsed.path_in_repo or None,
recursive=recursive,
)
)
print_file_listing(items, human_readable=human_readable, as_tree=as_tree, recursive=recursive)
@buckets_cli.command(
name="info",
examples=[
"hf buckets info user/my-bucket",
"hf buckets info hf://buckets/user/my-bucket",
],
)
def info(
bucket_id: Annotated[
str,
Argument(
help="Bucket ID: namespace/bucket_name or hf://buckets/namespace/bucket_name",
),
],
token: TokenOpt = None,
) -> None:
"""Get info about a bucket."""
api = get_hf_api(token=token)
parsed = _parse_bucket_uri(bucket_id)
bucket = api.bucket_info(parsed.id)
out.dict(bucket, id_key="id")
@buckets_cli.command(
name="delete",
examples=[
"hf buckets delete user/my-bucket",
"hf buckets delete hf://buckets/user/my-bucket",
"hf buckets delete user/my-bucket --yes",
"hf buckets delete user/my-bucket --missing-ok",
],
)
def delete(
bucket_id: Annotated[
str,
Argument(
help="Bucket ID: namespace/bucket_name or hf://buckets/namespace/bucket_name",
),
],
yes: Annotated[
bool,
Option(
"--yes",
"-y",
help="Skip confirmation prompt.",
),
] = False,
missing_ok: Annotated[
bool,
Option(
"--missing-ok",
help="Do not raise an error if the bucket does not exist.",
),
] = False,
token: TokenOpt = None,
) -> None:
"""Delete a bucket.
This deletes the entire bucket and all its contents. Use `hf buckets rm` to remove individual files.
"""
if bucket_id.startswith(BUCKET_PREFIX):
parsed = _parse_bucket_uri(bucket_id)
if parsed.path_in_repo:
raise click.BadParameter(
f"Cannot specify a prefix for bucket deletion: {bucket_id}."
f" Use namespace/bucket_name or {BUCKET_PREFIX}namespace/bucket_name."
)
bucket_id = parsed.id
elif "/" not in bucket_id:
raise click.BadParameter(
f"Invalid bucket ID: {bucket_id}."
f" Must be in format namespace/bucket_name or {BUCKET_PREFIX}namespace/bucket_name."
)
out.confirm(f"Are you sure you want to delete bucket '{bucket_id}'?", yes=yes)
api = get_hf_api(token=token)
api.delete_bucket(bucket_id, missing_ok=missing_ok)
out.result("Bucket deleted", bucket_id=bucket_id)
@buckets_cli.command(
name="remove | rm",
examples=[
"hf buckets remove user/my-bucket/file.txt",
"hf buckets rm hf://buckets/user/my-bucket/file.txt",
"hf buckets rm user/my-bucket/logs/ --recursive",
'hf buckets rm user/my-bucket --recursive --include "*.tmp"',
"hf buckets rm user/my-bucket/data/ --recursive --dry-run",
],
)
def remove(
argument: Annotated[
str,
Argument(
help=(
"Bucket path: namespace/bucket_name/path or hf://buckets/namespace/bucket_name/path."
" With --recursive, namespace/bucket_name is also accepted to target all files."
),
),
],
recursive: Annotated[
bool,
Option(
"--recursive",
"-R",
help="Remove files recursively under the given prefix.",
),
] = False,
yes: Annotated[
bool,
Option(
"--yes",
"-y",
help="Skip confirmation prompt.",
),
] = False,
dry_run: Annotated[
bool,
Option(
"--dry-run",
help="Preview what would be deleted without actually deleting.",
),
] = False,
include: Annotated[
list[str] | None,
Option(
help="Include only files matching pattern (can specify multiple). Requires --recursive.",
),
] = None,
exclude: Annotated[
list[str] | None,
Option(
help="Exclude files matching pattern (can specify multiple). Requires --recursive.",
),
] = None,
token: TokenOpt = None,
) -> None:
"""Remove files from a bucket.
To delete an entire bucket, use `hf buckets delete` instead.
"""
parsed = _parse_bucket_uri(argument)
bucket_id = parsed.id
prefix = parsed.path_in_repo
if prefix == "" and not recursive:
raise click.BadParameter(
f"No file path specified. To remove files, provide a path"
f" (e.g. '{bucket_id}/FILE') or use --recursive to remove all files."
f" To delete the entire bucket, use `hf buckets delete {bucket_id}`."
)
if (include or exclude) and not recursive:
raise click.BadParameter("--include and --exclude require --recursive.")
api = get_hf_api(token=token)
if recursive:
status = out.status("Listing files from remote")
all_files: list[BucketFile] = []
for item in api.list_bucket_tree(
bucket_id,
prefix=prefix or None,
recursive=True,
):
if isinstance(item, BucketFile):
all_files.append(item)
status.update(f"Listing files from remote ({len(all_files)} files)")
status.done(f"Listing files from remote ({len(all_files)} files)")
if include or exclude:
matcher = FilterMatcher(include_patterns=include, exclude_patterns=exclude)
matched_files = [f for f in all_files if matcher.matches(f.path)]
else:
matched_files = all_files
file_paths = [f.path for f in matched_files]
total_size = sum(f.size for f in matched_files)
size_str = format_size(total_size, human_readable=True)
if not file_paths:
out.text("No files to remove.")
return
count_label = f"{len(file_paths)} file(s) totaling {size_str}"
if not yes and not dry_run:
out.text("\n".join(f" {path}" for path in file_paths))
out.confirm(f"Remove {count_label} from '{bucket_id}'?", yes=False)
if dry_run:
out.text("\n".join(f"delete: {BUCKET_PREFIX}{bucket_id}/{path}" for path in file_paths))
out.text(f"(dry run) {count_label} would be removed.")
return
api.batch_bucket_files(bucket_id, delete=file_paths)
out.result(
f"Removed {count_label} from '{bucket_id}'",
bucket_id=bucket_id,
files_deleted=len(file_paths),
size=size_str,
)
else:
file_path = prefix
if not file_path:
raise click.BadParameter("File path cannot be empty.")
if dry_run:
out.text(f"delete: {BUCKET_PREFIX}{bucket_id}/{file_path}")
out.text("(dry run) 1 file would be removed.")
return
out.confirm(f"Remove '{file_path}' from '{bucket_id}'?", yes=yes)
api.batch_bucket_files(bucket_id, delete=[file_path])
out.result("File removed", path=file_path, bucket_id=bucket_id)
@buckets_cli.command(
name="move",
examples=[
"hf buckets move user/old-bucket user/new-bucket",
"hf buckets move user/my-bucket my-org/my-bucket",
"hf buckets move hf://buckets/user/old-bucket hf://buckets/user/new-bucket",
],
)
def move(
from_id: Annotated[
str,
Argument(
help="Source bucket ID: namespace/bucket_name or hf://buckets/namespace/bucket_name",
),
],
to_id: Annotated[
str,
Argument(
help="Destination bucket ID: namespace/bucket_name or hf://buckets/namespace/bucket_name",
),
],
token: TokenOpt = None,
) -> None:
"""Move (rename) a bucket to a new name or namespace."""
# Parse from_id
parsed_from = _parse_bucket_uri(from_id)
if parsed_from.path_in_repo:
raise click.BadParameter(
f"Cannot specify a prefix for bucket move: {from_id}."
f" Use namespace/bucket_name or {BUCKET_PREFIX}namespace/bucket_name."
)
# Parse to_id
parsed_to = _parse_bucket_uri(to_id)
if parsed_to.path_in_repo:
raise click.BadParameter(
f"Cannot specify a prefix for bucket move: {to_id}."
f" Use namespace/bucket_name or {BUCKET_PREFIX}namespace/bucket_name."
)
api = get_hf_api(token=token)
api.move_bucket(from_id=parsed_from.id, to_id=parsed_to.id)
out.result("Bucket moved", from_id=parsed_from.id, to_id=parsed_to.id)
# =============================================================================
# Sync command
# =============================================================================
@buckets_cli.command(
name="sync",
examples=[
"hf buckets sync ./data hf://buckets/user/my-bucket",
"hf buckets sync hf://buckets/user/my-bucket ./data",
"hf buckets sync ./data hf://buckets/user/my-bucket --delete",
'hf buckets sync hf://buckets/user/my-bucket ./data --include "*.safetensors" --exclude "*.tmp"',
"hf buckets sync ./data hf://buckets/user/my-bucket --plan sync-plan.jsonl",
"hf buckets sync --apply sync-plan.jsonl",
"hf buckets sync ./data hf://buckets/user/my-bucket --dry-run",
"hf buckets sync ./data hf://buckets/user/my-bucket --dry-run | jq .",
],
)
def sync(
source: Annotated[
str | None,
Argument(
help="Source path: local directory or hf://buckets/namespace/bucket_name(/prefix)",
),
] = None,
dest: Annotated[
str | None,
Argument(
help="Destination path: local directory or hf://buckets/namespace/bucket_name(/prefix)",
),
] = None,
delete: Annotated[
bool,
Option(
help="Delete destination files not present in source.",
),
] = False,
ignore_times: Annotated[
bool,
Option(
"--ignore-times",
help="Skip files only based on size, ignoring modification times.",
),
] = False,
ignore_sizes: Annotated[
bool,
Option(
"--ignore-sizes",
help="Skip files only based on modification times, ignoring sizes.",
),
] = False,
plan: Annotated[
str | None,
Option(
help="Save sync plan to JSONL file for review instead of executing.",
),
] = None,
apply: Annotated[
str | None,
Option(
help="Apply a previously saved plan file.",
),
] = None,
dry_run: Annotated[
bool,
Option(
"--dry-run",
help="Print sync plan to stdout as JSONL without executing.",
),
] = False,
include: Annotated[
list[str] | None,
Option(
help="Include files matching pattern (can specify multiple).",
),
] = None,
exclude: Annotated[
list[str] | None,
Option(
help="Exclude files matching pattern (can specify multiple).",
),
] = None,
filter_from: Annotated[
str | None,
Option(
help="Read include/exclude patterns from file.",
),
] = None,
existing: Annotated[
bool,
Option(
"--existing",
help="Skip creating new files on receiver (only update existing files).",
),
] = False,
ignore_existing: Annotated[
bool,
Option(
"--ignore-existing",
help="Skip updating files that exist on receiver (only create new files).",
),
] = False,
verbose: Annotated[
bool,
Option(
"--verbose",
"-v",
help="Show detailed logging with reasoning.",
),
] = False,
token: TokenOpt = None,
) -> None:
"""Sync files between local directory and a bucket."""
api = get_hf_api(token=token)
api.sync_bucket(
source=source,
dest=dest,
delete=delete,
ignore_times=ignore_times,
ignore_sizes=ignore_sizes,
existing=existing,
ignore_existing=ignore_existing,
include=include,
exclude=exclude,
filter_from=filter_from,
plan=plan,
apply=apply,
dry_run=dry_run,
verbose=verbose,
quiet=out.is_quiet(),
)
if plan and not out.is_quiet():
out.hint(f"Run `hf buckets sync --apply {plan}` to execute this plan.")
# =============================================================================
# Cp command
# =============================================================================
# `hf buckets cp` is an alias for the top-level `hf cp` command (see `cli/_cp.py`).
buckets_cli.command(
name="cp",
examples=[
# Download (repo or bucket -> local / stdout)
"hf buckets cp hf://buckets/username/my-bucket/config.json config.json",
"hf buckets cp hf://buckets/username/my-bucket/data.csv data/",
"hf buckets cp hf://buckets/username/my-bucket/config.json -",
# Upload (local / stdin -> bucket)
"hf buckets cp model.safetensors hf://buckets/username/my-bucket/model.safetensors",
"hf buckets cp config.json hf://buckets/username/my-bucket/logs/",
"hf buckets cp - hf://buckets/username/my-bucket/config.json",
# Remote to remote (repo or bucket -> bucket)
"hf buckets cp hf://buckets/username/my-bucket/data.csv hf://buckets/username/dest-bucket/",
"hf buckets cp hf://buckets/username/source-bucket/logs/ hf://buckets/username/dest-bucket/logs/",
],
)(make_cp("buckets"))
|