huggingface-hub 1.0.0rc0__py3-none-any.whl → 1.0.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of huggingface-hub might be problematic. Click here for more details.

@@ -15,118 +15,103 @@
15
15
  """Contains command to upload a large folder with the CLI."""
16
16
 
17
17
  import os
18
- from argparse import Namespace, _SubParsersAction
19
- from typing import Optional
18
+ from typing import Annotated, Optional
19
+
20
+ import typer
20
21
 
21
22
  from huggingface_hub import logging
22
- from huggingface_hub.commands import BaseHuggingfaceCLICommand
23
- from huggingface_hub.hf_api import HfApi
24
23
  from huggingface_hub.utils import disable_progress_bars
25
24
 
26
- from ._cli_utils import ANSI
25
+ from ._cli_utils import ANSI, PrivateOpt, RepoIdArg, RepoType, RepoTypeOpt, RevisionOpt, TokenOpt, get_hf_api
27
26
 
28
27
 
29
28
  logger = logging.get_logger(__name__)
30
29
 
31
30
 
32
- class UploadLargeFolderCommand(BaseHuggingfaceCLICommand):
33
- @staticmethod
34
- def register_subcommand(parser: _SubParsersAction):
35
- subparser = parser.add_parser(
36
- "upload-large-folder",
37
- help="Upload a large folder to the Hub. Recommended for resumable uploads.",
38
- )
39
- subparser.add_argument(
40
- "repo_id", type=str, help="The ID of the repo to upload to (e.g. `username/repo-name`)."
41
- )
42
- subparser.add_argument("local_path", type=str, help="Local path to the file or folder to upload.")
43
- subparser.add_argument(
44
- "--repo-type",
45
- choices=["model", "dataset", "space"],
46
- help="Type of the repo to upload to (e.g. `dataset`).",
47
- )
48
- subparser.add_argument(
49
- "--revision",
50
- type=str,
51
- help=("An optional Git revision to push to. It can be a branch name or a PR reference."),
52
- )
53
- subparser.add_argument(
54
- "--private",
55
- action="store_true",
56
- help=(
57
- "Whether to create a private repo if repo doesn't exist on the Hub. Ignored if the repo already exists."
58
- ),
59
- )
60
- subparser.add_argument("--include", nargs="*", type=str, help="Glob patterns to match files to upload.")
61
- subparser.add_argument("--exclude", nargs="*", type=str, help="Glob patterns to exclude from files to upload.")
62
- subparser.add_argument(
63
- "--token", type=str, help="A User Access Token generated from https://huggingface.co/settings/tokens"
64
- )
65
- subparser.add_argument(
66
- "--num-workers", type=int, help="Number of workers to use to hash, upload and commit files."
67
- )
68
- subparser.add_argument("--no-report", action="store_true", help="Whether to disable regular status report.")
69
- subparser.add_argument("--no-bars", action="store_true", help="Whether to disable progress bars.")
70
- subparser.set_defaults(func=UploadLargeFolderCommand)
71
-
72
- def __init__(self, args: Namespace) -> None:
73
- self.repo_id: str = args.repo_id
74
- self.local_path: str = args.local_path
75
- self.repo_type: str = args.repo_type
76
- self.revision: Optional[str] = args.revision
77
- self.private: bool = args.private
78
-
79
- self.include: Optional[list[str]] = args.include
80
- self.exclude: Optional[list[str]] = args.exclude
81
-
82
- self.api: HfApi = HfApi(token=args.token, library_name="hf")
83
-
84
- self.num_workers: Optional[int] = args.num_workers
85
- self.no_report: bool = args.no_report
86
- self.no_bars: bool = args.no_bars
87
-
88
- if not os.path.isdir(self.local_path):
89
- raise ValueError("Large upload is only supported for folders.")
90
-
91
- def run(self) -> None:
92
- logging.set_verbosity_info()
93
-
94
- print(
95
- ANSI.yellow(
96
- "You are about to upload a large folder to the Hub using `hf upload-large-folder`. "
97
- "This is a new feature so feedback is very welcome!\n"
98
- "\n"
99
- "A few things to keep in mind:\n"
100
- " - Repository limits still apply: https://huggingface.co/docs/hub/repositories-recommendations\n"
101
- " - Do not start several processes in parallel.\n"
102
- " - You can interrupt and resume the process at any time. "
103
- "The script will pick up where it left off except for partially uploaded files that would have to be entirely reuploaded.\n"
104
- " - Do not upload the same folder to several repositories. If you need to do so, you must delete the `./.cache/huggingface/` folder first.\n"
105
- "\n"
106
- f"Some temporary metadata will be stored under `{self.local_path}/.cache/huggingface`.\n"
107
- " - You must not modify those files manually.\n"
108
- " - You must not delete the `./.cache/huggingface/` folder while a process is running.\n"
109
- " - You can delete the `./.cache/huggingface/` folder to reinitialize the upload state when process is not running. Files will have to be hashed and preuploaded again, except for already committed files.\n"
110
- "\n"
111
- "If the process output is too verbose, you can disable the progress bars with `--no-bars`. "
112
- "You can also entirely disable the status report with `--no-report`.\n"
113
- "\n"
114
- "For more details, run `hf upload-large-folder --help` or check the documentation at "
115
- "https://huggingface.co/docs/huggingface_hub/guides/upload#upload-a-large-folder."
116
- )
117
- )
118
-
119
- if self.no_bars:
120
- disable_progress_bars()
121
-
122
- self.api.upload_large_folder(
123
- repo_id=self.repo_id,
124
- folder_path=self.local_path,
125
- repo_type=self.repo_type,
126
- revision=self.revision,
127
- private=self.private,
128
- allow_patterns=self.include,
129
- ignore_patterns=self.exclude,
130
- num_workers=self.num_workers,
131
- print_report=not self.no_report,
31
+ def upload_large_folder(
32
+ repo_id: RepoIdArg,
33
+ local_path: Annotated[
34
+ str,
35
+ typer.Argument(
36
+ help="Local path to the folder to upload.",
37
+ ),
38
+ ],
39
+ repo_type: RepoTypeOpt = RepoType.model,
40
+ revision: RevisionOpt = None,
41
+ private: PrivateOpt = False,
42
+ include: Annotated[
43
+ Optional[list[str]],
44
+ typer.Option(
45
+ help="Glob patterns to match files to upload.",
46
+ ),
47
+ ] = None,
48
+ exclude: Annotated[
49
+ Optional[list[str]],
50
+ typer.Option(
51
+ help="Glob patterns to exclude from files to upload.",
52
+ ),
53
+ ] = None,
54
+ token: TokenOpt = None,
55
+ num_workers: Annotated[
56
+ Optional[int],
57
+ typer.Option(
58
+ help="Number of workers to use to hash, upload and commit files.",
59
+ ),
60
+ ] = None,
61
+ no_report: Annotated[
62
+ bool,
63
+ typer.Option(
64
+ help="Whether to disable regular status report.",
65
+ ),
66
+ ] = False,
67
+ no_bars: Annotated[
68
+ bool,
69
+ typer.Option(
70
+ help="Whether to disable progress bars.",
71
+ ),
72
+ ] = False,
73
+ ) -> None:
74
+ """Upload a large folder to the Hub. Recommended for resumable uploads."""
75
+ if not os.path.isdir(local_path):
76
+ raise typer.BadParameter("Large upload is only supported for folders.", param_hint="local_path")
77
+
78
+ print(
79
+ ANSI.yellow(
80
+ "You are about to upload a large folder to the Hub using `hf upload-large-folder`. "
81
+ "This is a new feature so feedback is very welcome!\n"
82
+ "\n"
83
+ "A few things to keep in mind:\n"
84
+ " - Repository limits still apply: https://huggingface.co/docs/hub/repositories-recommendations\n"
85
+ " - Do not start several processes in parallel.\n"
86
+ " - You can interrupt and resume the process at any time. "
87
+ "The script will pick up where it left off except for partially uploaded files that would have to be entirely reuploaded.\n"
88
+ " - Do not upload the same folder to several repositories. If you need to do so, you must delete the `./.cache/huggingface/` folder first.\n"
89
+ "\n"
90
+ f"Some temporary metadata will be stored under `{local_path}/.cache/huggingface`.\n"
91
+ " - You must not modify those files manually.\n"
92
+ " - You must not delete the `./.cache/huggingface/` folder while a process is running.\n"
93
+ " - You can delete the `./.cache/huggingface/` folder to reinitialize the upload state when process is not running. Files will have to be hashed and preuploaded again, except for already committed files.\n"
94
+ "\n"
95
+ "If the process output is too verbose, you can disable the progress bars with `--no-bars`. "
96
+ "You can also entirely disable the status report with `--no-report`.\n"
97
+ "\n"
98
+ "For more details, run `hf upload-large-folder --help` or check the documentation at "
99
+ "https://huggingface.co/docs/huggingface_hub/guides/upload#upload-a-large-folder."
132
100
  )
101
+ )
102
+
103
+ if no_bars:
104
+ disable_progress_bars()
105
+
106
+ api = get_hf_api(token=token)
107
+ api.upload_large_folder(
108
+ repo_id=repo_id,
109
+ folder_path=local_path,
110
+ repo_type=repo_type.value,
111
+ revision=revision,
112
+ private=private,
113
+ allow_patterns=include,
114
+ ignore_patterns=exclude,
115
+ num_workers=num_workers,
116
+ print_report=not no_report,
117
+ )
huggingface_hub/errors.py CHANGED
@@ -37,7 +37,7 @@ class OfflineModeIsEnabled(ConnectionError):
37
37
  """Raised when a request is made but `HF_HUB_OFFLINE=1` is set as environment variable."""
38
38
 
39
39
 
40
- class HfHubHTTPError(HTTPError):
40
+ class HfHubHTTPError(HTTPError, OSError):
41
41
  """
42
42
  HTTPError to inherit from for any custom HTTP Error raised in HF Hub.
43
43
 
@@ -55,7 +55,7 @@ from ._http import (
55
55
  CLIENT_FACTORY_T,
56
56
  HfHubAsyncTransport,
57
57
  HfHubTransport,
58
- close_client,
58
+ close_session,
59
59
  fix_hf_endpoint_in_url,
60
60
  get_async_session,
61
61
  get_session,
@@ -174,7 +174,7 @@ def set_client_factory(client_factory: CLIENT_FACTORY_T) -> None:
174
174
  """
175
175
  global _GLOBAL_CLIENT_FACTORY
176
176
  with _CLIENT_LOCK:
177
- close_client()
177
+ close_session()
178
178
  _GLOBAL_CLIENT_FACTORY = client_factory
179
179
 
180
180
 
@@ -228,9 +228,9 @@ def get_async_session() -> httpx.AsyncClient:
228
228
  return _GLOBAL_ASYNC_CLIENT_FACTORY()
229
229
 
230
230
 
231
- def close_client() -> None:
231
+ def close_session() -> None:
232
232
  """
233
- Close the global httpx.Client used by `huggingface_hub`.
233
+ Close the global `httpx.Client` used by `huggingface_hub`.
234
234
 
235
235
  If a Client is closed, it will be recreated on the next call to [`get_client`].
236
236
 
@@ -250,7 +250,7 @@ def close_client() -> None:
250
250
  logger.warning(f"Error closing client: {e}")
251
251
 
252
252
 
253
- atexit.register(close_client)
253
+ atexit.register(close_session)
254
254
 
255
255
 
256
256
  def _http_backoff_base(
@@ -325,7 +325,7 @@ def _http_backoff_base(
325
325
  logger.warning(f"'{err}' thrown while requesting {method} {url}")
326
326
 
327
327
  if isinstance(err, httpx.ConnectError):
328
- close_client() # In case of SSLError it's best to close the shared httpx.Client objects
328
+ close_session() # In case of SSLError it's best to close the shared httpx.Client objects
329
329
 
330
330
  if nb_tries > max_retries:
331
331
  raise err
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huggingface-hub
3
- Version: 1.0.0rc0
3
+ Version: 1.0.0rc1
4
4
  Summary: Client library to download and publish models, datasets and other repos on the huggingface.co hub
5
5
  Home-page: https://github.com/huggingface/huggingface_hub
6
6
  Author: Hugging Face, Inc.
@@ -30,10 +30,12 @@ Requires-Dist: packaging>=20.9
30
30
  Requires-Dist: pyyaml>=5.1
31
31
  Requires-Dist: httpx<1,>=0.23.0
32
32
  Requires-Dist: tqdm>=4.42.1
33
+ Requires-Dist: typer-slim
33
34
  Requires-Dist: typing-extensions>=3.7.4.3
34
35
  Requires-Dist: hf-xet<2.0.0,>=1.1.3; platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "arm64" or platform_machine == "aarch64"
35
36
  Provides-Extra: all
36
37
  Requires-Dist: InquirerPy==0.3.4; extra == "all"
38
+ Requires-Dist: shellingham; extra == "all"
37
39
  Requires-Dist: aiohttp; extra == "all"
38
40
  Requires-Dist: authlib>=1.3.2; extra == "all"
39
41
  Requires-Dist: fastapi; extra == "all"
@@ -66,8 +68,10 @@ Requires-Dist: types-tqdm; extra == "all"
66
68
  Requires-Dist: types-urllib3; extra == "all"
67
69
  Provides-Extra: cli
68
70
  Requires-Dist: InquirerPy==0.3.4; extra == "cli"
71
+ Requires-Dist: shellingham; extra == "cli"
69
72
  Provides-Extra: dev
70
73
  Requires-Dist: InquirerPy==0.3.4; extra == "dev"
74
+ Requires-Dist: shellingham; extra == "dev"
71
75
  Requires-Dist: aiohttp; extra == "dev"
72
76
  Requires-Dist: authlib>=1.3.2; extra == "dev"
73
77
  Requires-Dist: fastapi; extra == "dev"
@@ -124,6 +128,7 @@ Requires-Dist: libcst>=1.4.0; extra == "quality"
124
128
  Requires-Dist: ty; extra == "quality"
125
129
  Provides-Extra: testing
126
130
  Requires-Dist: InquirerPy==0.3.4; extra == "testing"
131
+ Requires-Dist: shellingham; extra == "testing"
127
132
  Requires-Dist: aiohttp; extra == "testing"
128
133
  Requires-Dist: authlib>=1.3.2; extra == "testing"
129
134
  Requires-Dist: fastapi; extra == "testing"
@@ -1,4 +1,4 @@
1
- huggingface_hub/__init__.py,sha256=2zl7Wz0HDypcB9eGvV3UEABlIRSSsZrKTnD3kEgmIug,52004
1
+ huggingface_hub/__init__.py,sha256=QK-fIP2bJRVfOAK94U51ibnhUnlmaz86Aqz5897v97w,52007
2
2
  huggingface_hub/_commit_api.py,sha256=1tz3oOAd0A4797INAzIOtS3Vj9Y58wsrV3B1pXShCCY,38833
3
3
  huggingface_hub/_commit_scheduler.py,sha256=Spz4u3Wpg2mz9pWkVtsLS6ljG0QD5dOD18tSRXt5YVk,14770
4
4
  huggingface_hub/_inference_endpoints.py,sha256=cGiZg244nIOi2OLTqm4V8-ZUY3O0Rr7NlOmoLeHUIbY,17592
@@ -15,7 +15,7 @@ huggingface_hub/_webhooks_server.py,sha256=iSYiQL6fx1-tmZJvj0ntftA9-blloqEeiJEwP
15
15
  huggingface_hub/community.py,sha256=RbW37Fh8IPsTOiE6ukTdG9mjkjECdKsvcWg6wBV55mg,12192
16
16
  huggingface_hub/constants.py,sha256=0wPK02ixE1drhlsEbpwi1RIQauezevkQnDB_JW3Y75c,9316
17
17
  huggingface_hub/dataclasses.py,sha256=G-_CJ8UUxZANUNUd_NmJiqqlhaGt2guyIlV0v9EOwL0,17193
18
- huggingface_hub/errors.py,sha256=K5zk02p0TZlIqYg3GEW7OvS7X0OPw16JQfDHyCl6X4o,11273
18
+ huggingface_hub/errors.py,sha256=vC__ajG9QCOW1ZFp4Tr6jA5kd8875_muJhaRuOVOE1s,11282
19
19
  huggingface_hub/fastai_utils.py,sha256=i7x4fb35_b4UK4-PXIImn_9GuYhs3iFshsD5XgbtZSc,16647
20
20
  huggingface_hub/file_download.py,sha256=C4TLrT6lzYqSa5TTbQzIB6zQGzw0nyj-YUYlrnyxu0c,74012
21
21
  huggingface_hub/hf_api.py,sha256=4lCbMOiLgzsek7qmeasI6add8flB3F9c-0Emmb1eHHc,469288
@@ -25,19 +25,19 @@ huggingface_hub/lfs.py,sha256=zmnoEW7NLVinylPqQNuQnwqqg2sjCJTp4lOBGllvdtA,15983
25
25
  huggingface_hub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  huggingface_hub/repocard.py,sha256=sg-n9CHYXJFbrwguTO2fiSgoOqn-frz1aeDlGuTPbhA,34908
27
27
  huggingface_hub/repocard_data.py,sha256=DLdOKlnQCHOOpU-e_skx0YaHxoqN9ZKIOmmMjHUqb1w,34063
28
- huggingface_hub/cli/__init__.py,sha256=xzX1qgAvrtAX4gP59WrPlvOZFLuzuTgcjvanQvcpgHc,928
29
- huggingface_hub/cli/_cli_utils.py,sha256=AzIbYNBp5aVHeGMeP7c8pwg7jsR2w5gQiyDXG2mcgBw,2089
30
- huggingface_hub/cli/auth.py,sha256=VxY9BvV7-jXdxBUEXlqg8GYLXO-gskkkRMrNnRyLaDw,7323
31
- huggingface_hub/cli/cache.py,sha256=rgSytxLkwex8TsVjV5PhAtY9zn-o6PaPhIthiLPRzhQ,15849
32
- huggingface_hub/cli/download.py,sha256=_odsNVxZxI_0OfsJhuV1KgifMOhD65n20DRbYU1Ntyg,7109
33
- huggingface_hub/cli/hf.py,sha256=SQ73_SXEQnWVJkhKT_6bwNQBHQXGOdI5qqlTTtI0XH0,2328
34
- huggingface_hub/cli/jobs.py,sha256=1R1jU1NB4fUeDTnCjV1T3mTmlN-xVijJsOch5xzg6_o,44316
35
- huggingface_hub/cli/lfs.py,sha256=21J28s9Dce_5OLXeorlwDp2aIuh5YRZfkE4zNRqgkeU,7218
36
- huggingface_hub/cli/repo.py,sha256=sdLrVEQB4XnHaizOLc9qiAMhCNiLxNbcln1SqnEz4K0,10580
37
- huggingface_hub/cli/repo_files.py,sha256=W_gqvTxdIt6FoiW7GEIo-ZK31-ypoFK-693jubjjxOI,4825
38
- huggingface_hub/cli/system.py,sha256=eLSYME7ywt5Ae3tYQnS43Tai2pR2JLtA1KGImzPt5pM,1707
39
- huggingface_hub/cli/upload.py,sha256=-UoZ8-PEqMH9ALQxc6JlnBDyTMublJ1UpGpmVKNLqxQ,14343
40
- huggingface_hub/cli/upload_large_folder.py,sha256=3dEWW2cILem216nHkPKcQ7PHJ0VOkL-aGhNGVmzGkuM,6145
28
+ huggingface_hub/cli/__init__.py,sha256=A4zmzuHD2OHjQ5zmdfcnsj0JeCzHVPtpzh-wCjInugA,606
29
+ huggingface_hub/cli/_cli_utils.py,sha256=bbd3j7TjgRFr9ihvIwpLFuc30E1FRgWY0YOW-bhmIQg,3828
30
+ huggingface_hub/cli/auth.py,sha256=8UXf03A2gggkISLaDXIkLCYuURc2A3rHyFqY-gWajCA,5177
31
+ huggingface_hub/cli/cache.py,sha256=78DjbPHqfo8kAlhZRpayEv3nhuC1Ckl3dICdljkZSII,13999
32
+ huggingface_hub/cli/download.py,sha256=5KufMvmucKHR93_KFBnnOZu1mQLpwwI8MnLqiMwnYrs,5359
33
+ huggingface_hub/cli/hf.py,sha256=Bs4cB117ijea8KsJ9CjGWFQjgkWUGAgltmahTHCE6YA,2315
34
+ huggingface_hub/cli/jobs.py,sha256=HgxxxDRaCHH62eBpihzf1SakevM3OWewPiIzWjFkYLw,23871
35
+ huggingface_hub/cli/lfs.py,sha256=UJI5nBbrt_a-lm5uU88gxD6hVu8xyQav-zBxLTv3Wzo,5895
36
+ huggingface_hub/cli/repo.py,sha256=5k0qZ15_DzAg2EJhZWr5CvVF_5j8kBV5HNPKTnuZlDs,6127
37
+ huggingface_hub/cli/repo_files.py,sha256=6d5GsLsCjqSKTSbJqCHnrRxB9kXj-yLRAtcVbQkQNMo,2799
38
+ huggingface_hub/cli/system.py,sha256=U6j_MFDnlzBLRi2LZjXMxzRcp50UMdAZ7z5tWuPVJYk,1012
39
+ huggingface_hub/cli/upload.py,sha256=4OiGfKW12gPQJBSOqcoeWyTrBUSKeVrJ43cOQ2wgtrA,11823
40
+ huggingface_hub/cli/upload_large_folder.py,sha256=8n2icgejjDPNCr4iODYokLDCJ4BF9EVIoUQW41d4ddU,4470
41
41
  huggingface_hub/commands/__init__.py,sha256=AkbM2a-iGh0Vq_xAWhK3mu3uZ44km8-X5uWjKcvcrUQ,928
42
42
  huggingface_hub/commands/_cli_utils.py,sha256=5ee2T6YBBCshtZlUEqVHERY9JOHxxPnVEsQJCpze7Yw,2323
43
43
  huggingface_hub/commands/delete_cache.py,sha256=ePmnQG3HTmHTEuJ_iHxSVNFDgXIWdE3Ce-4S29ZgK7E,17732
@@ -124,7 +124,7 @@ huggingface_hub/serialization/_dduf.py,sha256=eyUREtvL7od9SSYKrGcCayF29w3xcP1qXT
124
124
  huggingface_hub/serialization/_torch.py,sha256=IYTjHRgm2o5MQVF2n-4dKC0K6hEW-z-DFlsSRiPX2bI,45177
125
125
  huggingface_hub/templates/datasetcard_template.md,sha256=W-EMqR6wndbrnZorkVv56URWPG49l7MATGeI015kTvs,5503
126
126
  huggingface_hub/templates/modelcard_template.md,sha256=4AqArS3cqdtbit5Bo-DhjcnDFR-pza5hErLLTPM4Yuc,6870
127
- huggingface_hub/utils/__init__.py,sha256=rHuaP3vQkaSEYdBxgP8a0X8h1VJi4ihwFr0nty72jD8,3821
127
+ huggingface_hub/utils/__init__.py,sha256=o0vivDNuvQI-0yW_imf9GtbEYPRkt3mcY3wkeF1bGT4,3822
128
128
  huggingface_hub/utils/_auth.py,sha256=TAz8pjk1lP7gseit8Trl2LygKun9unMEBWg_36EeDkA,8280
129
129
  huggingface_hub/utils/_cache_assets.py,sha256=kai77HPQMfYpROouMBQCr_gdBCaeTm996Sqj0dExbNg,5728
130
130
  huggingface_hub/utils/_cache_manager.py,sha256=d9WULNC7NtUJgkDTbNPVpp5JFkQltkdpszLkRgA3Z5s,34490
@@ -136,7 +136,7 @@ huggingface_hub/utils/_experimental.py,sha256=3-c8irbn9sJr2CwWbzhGkIrdXKg8_x7Bif
136
136
  huggingface_hub/utils/_fixes.py,sha256=xQZzfwLqZV8-gNcw9mrZ-M1acA6NZHszI_-cSZIWN-U,3978
137
137
  huggingface_hub/utils/_git_credential.py,sha256=4B77QzeiPxCwK6BWZgUc1avzRKpna3wYlhVg7AuSCzA,4613
138
138
  huggingface_hub/utils/_headers.py,sha256=k_ApvA8fJGHc0yNp2IFY8wySM9MQ5UZEpjr1g-fpRJ4,8060
139
- huggingface_hub/utils/_http.py,sha256=DBu0ARYfIdC3WwxTy_Hgm-ZNzbxuOuiAaJltN1meDvA,31163
139
+ huggingface_hub/utils/_http.py,sha256=Wbxl92nI6elfx8s_BhwB79_jYqK21IwuqDO0o3pbyEU,31169
140
140
  huggingface_hub/utils/_lfs.py,sha256=EC0Oz6Wiwl8foRNkUOzrETXzAWlbgpnpxo5a410ovFY,3957
141
141
  huggingface_hub/utils/_pagination.py,sha256=wEHEWhCu9vN5pv51t7ixSGe13g63kS6AJM4P53eY9M4,1894
142
142
  huggingface_hub/utils/_paths.py,sha256=WCR2WbqDJLdNlU4XZNXXNmGct3OiDwPesGYrq41T2wE,5036
@@ -153,9 +153,9 @@ huggingface_hub/utils/insecure_hashlib.py,sha256=z3dVUFvdBZ8kQI_8Vzvvlr3ims-EBiY
153
153
  huggingface_hub/utils/logging.py,sha256=0A8fF1yh3L9Ka_bCDX2ml4U5Ht0tY8Dr3JcbRvWFuwo,4909
154
154
  huggingface_hub/utils/sha.py,sha256=OFnNGCba0sNcT2gUwaVCJnldxlltrHHe0DS_PCpV3C4,2134
155
155
  huggingface_hub/utils/tqdm.py,sha256=-9gfgNA8bg5v5YBToSuB6noClI3a6YaGeFZP61IWmeY,10662
156
- huggingface_hub-1.0.0rc0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
157
- huggingface_hub-1.0.0rc0.dist-info/METADATA,sha256=-4f1m9oenCxTuOYpZXqbcg7ZQ-5W1a3XzM21It9lhNw,13960
158
- huggingface_hub-1.0.0rc0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
159
- huggingface_hub-1.0.0rc0.dist-info/entry_points.txt,sha256=HIzLhjwPTO7U_ncpW4AkmzAuaadr1ajmYagW5mdb5TM,217
160
- huggingface_hub-1.0.0rc0.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
161
- huggingface_hub-1.0.0rc0.dist-info/RECORD,,
156
+ huggingface_hub-1.0.0rc1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
157
+ huggingface_hub-1.0.0rc1.dist-info/METADATA,sha256=qAYYCe9OOP8U3HWTlCkQP_n2fN6pO4UNiP9t_WxMKJc,14162
158
+ huggingface_hub-1.0.0rc1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
159
+ huggingface_hub-1.0.0rc1.dist-info/entry_points.txt,sha256=HIzLhjwPTO7U_ncpW4AkmzAuaadr1ajmYagW5mdb5TM,217
160
+ huggingface_hub-1.0.0rc1.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
161
+ huggingface_hub-1.0.0rc1.dist-info/RECORD,,