huggingface-hub 0.18.0rc0__py3-none-any.whl → 0.19.0__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.
- huggingface_hub/__init__.py +31 -5
- huggingface_hub/_commit_api.py +7 -11
- huggingface_hub/_inference_endpoints.py +348 -0
- huggingface_hub/_login.py +9 -7
- huggingface_hub/_multi_commits.py +1 -1
- huggingface_hub/_snapshot_download.py +6 -7
- huggingface_hub/_space_api.py +7 -4
- huggingface_hub/_tensorboard_logger.py +1 -0
- huggingface_hub/_webhooks_payload.py +7 -7
- huggingface_hub/commands/lfs.py +3 -6
- huggingface_hub/commands/user.py +1 -4
- huggingface_hub/constants.py +27 -0
- huggingface_hub/file_download.py +142 -134
- huggingface_hub/hf_api.py +1058 -503
- huggingface_hub/hf_file_system.py +57 -12
- huggingface_hub/hub_mixin.py +3 -5
- huggingface_hub/inference/_client.py +43 -8
- huggingface_hub/inference/_common.py +8 -16
- huggingface_hub/inference/_generated/_async_client.py +41 -8
- huggingface_hub/inference/_text_generation.py +43 -0
- huggingface_hub/inference_api.py +1 -1
- huggingface_hub/lfs.py +32 -14
- huggingface_hub/repocard_data.py +7 -0
- huggingface_hub/repository.py +19 -3
- huggingface_hub/templates/datasetcard_template.md +83 -43
- huggingface_hub/templates/modelcard_template.md +4 -3
- huggingface_hub/utils/__init__.py +1 -1
- huggingface_hub/utils/_cache_assets.py +3 -3
- huggingface_hub/utils/_cache_manager.py +6 -7
- huggingface_hub/utils/_datetime.py +3 -1
- huggingface_hub/utils/_errors.py +10 -0
- huggingface_hub/utils/_hf_folder.py +4 -2
- huggingface_hub/utils/_http.py +10 -1
- huggingface_hub/utils/_runtime.py +4 -2
- huggingface_hub/utils/endpoint_helpers.py +27 -175
- huggingface_hub/utils/insecure_hashlib.py +34 -0
- huggingface_hub/utils/logging.py +4 -6
- huggingface_hub/utils/sha.py +2 -1
- {huggingface_hub-0.18.0rc0.dist-info → huggingface_hub-0.19.0.dist-info}/METADATA +16 -15
- huggingface_hub-0.19.0.dist-info/RECORD +74 -0
- {huggingface_hub-0.18.0rc0.dist-info → huggingface_hub-0.19.0.dist-info}/WHEEL +1 -1
- huggingface_hub-0.18.0rc0.dist-info/RECORD +0 -72
- {huggingface_hub-0.18.0rc0.dist-info → huggingface_hub-0.19.0.dist-info}/LICENSE +0 -0
- {huggingface_hub-0.18.0rc0.dist-info → huggingface_hub-0.19.0.dist-info}/entry_points.txt +0 -0
- {huggingface_hub-0.18.0rc0.dist-info → huggingface_hub-0.19.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Taken from https://github.com/mlflow/mlflow/pull/10119
|
|
2
|
+
#
|
|
3
|
+
# DO NOT use this function for security purposes (e.g., password hashing).
|
|
4
|
+
#
|
|
5
|
+
# In Python >= 3.9, insecure hashing algorithms such as MD5 fail in FIPS-compliant
|
|
6
|
+
# environments unless `usedforsecurity=False` is explicitly passed.
|
|
7
|
+
#
|
|
8
|
+
# References:
|
|
9
|
+
# - https://github.com/mlflow/mlflow/issues/9905
|
|
10
|
+
# - https://github.com/mlflow/mlflow/pull/10119
|
|
11
|
+
# - https://docs.python.org/3/library/hashlib.html
|
|
12
|
+
# - https://github.com/huggingface/transformers/pull/27038
|
|
13
|
+
#
|
|
14
|
+
# Usage:
|
|
15
|
+
# ```python
|
|
16
|
+
# # Use
|
|
17
|
+
# from huggingface_hub.utils.insecure_hashlib import sha256
|
|
18
|
+
# # instead of
|
|
19
|
+
# from hashlib import sha256
|
|
20
|
+
#
|
|
21
|
+
# # Use
|
|
22
|
+
# from huggingface_hub.utils import insecure_hashlib
|
|
23
|
+
# # instead of
|
|
24
|
+
# import hashlib
|
|
25
|
+
# ```
|
|
26
|
+
import functools
|
|
27
|
+
import hashlib
|
|
28
|
+
import sys
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
_kwargs = {"usedforsecurity": False} if sys.version_info >= (3, 9) else {}
|
|
32
|
+
md5 = functools.partial(hashlib.md5, **_kwargs)
|
|
33
|
+
sha1 = functools.partial(hashlib.sha1, **_kwargs)
|
|
34
|
+
sha256 = functools.partial(hashlib.sha256, **_kwargs)
|
huggingface_hub/utils/logging.py
CHANGED
|
@@ -50,18 +50,16 @@ def _get_library_root_logger() -> logging.Logger:
|
|
|
50
50
|
|
|
51
51
|
def _get_default_logging_level():
|
|
52
52
|
"""
|
|
53
|
-
If
|
|
54
|
-
|
|
55
|
-
`_default_log_level`
|
|
53
|
+
If `HF_HUB_VERBOSITY` env var is set to one of the valid choices return that as the new default level. If it is not
|
|
54
|
+
- fall back to `_default_log_level`
|
|
56
55
|
"""
|
|
57
|
-
env_level_str = os.getenv("
|
|
56
|
+
env_level_str = os.getenv("HF_HUB_VERBOSITY", None)
|
|
58
57
|
if env_level_str:
|
|
59
58
|
if env_level_str in log_levels:
|
|
60
59
|
return log_levels[env_level_str]
|
|
61
60
|
else:
|
|
62
61
|
logging.getLogger().warning(
|
|
63
|
-
f"Unknown option
|
|
64
|
-
f"has to be one of: { ', '.join(log_levels.keys()) }"
|
|
62
|
+
f"Unknown option HF_HUB_VERBOSITY={env_level_str}, has to be one of: { ', '.join(log_levels.keys()) }"
|
|
65
63
|
)
|
|
66
64
|
return _default_log_level
|
|
67
65
|
|
huggingface_hub/utils/sha.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"""Utilities to efficiently compute the SHA 256 hash of a bunch of bytes."""
|
|
2
|
-
from hashlib import sha256
|
|
3
2
|
from typing import BinaryIO, Optional
|
|
4
3
|
|
|
4
|
+
from .insecure_hashlib import sha256
|
|
5
|
+
|
|
5
6
|
|
|
6
7
|
def sha_fileobj(fileobj: BinaryIO, chunk_size: Optional[int] = None) -> bytes:
|
|
7
8
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huggingface-hub
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
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.
|
|
@@ -33,7 +33,7 @@ Requires-Dist: packaging >=20.9
|
|
|
33
33
|
Provides-Extra: all
|
|
34
34
|
Requires-Dist: InquirerPy ==0.3.4 ; extra == 'all'
|
|
35
35
|
Requires-Dist: aiohttp ; extra == 'all'
|
|
36
|
-
Requires-Dist: pydantic <
|
|
36
|
+
Requires-Dist: pydantic <3.0,>1.1 ; extra == 'all'
|
|
37
37
|
Requires-Dist: jedi ; extra == 'all'
|
|
38
38
|
Requires-Dist: Jinja2 ; extra == 'all'
|
|
39
39
|
Requires-Dist: pytest ; extra == 'all'
|
|
@@ -47,9 +47,9 @@ Requires-Dist: soundfile ; extra == 'all'
|
|
|
47
47
|
Requires-Dist: Pillow ; extra == 'all'
|
|
48
48
|
Requires-Dist: gradio ; extra == 'all'
|
|
49
49
|
Requires-Dist: numpy ; extra == 'all'
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist: ruff >=0.0.241 ; extra == 'all'
|
|
50
|
+
Requires-Dist: ruff >=0.1.3 ; extra == 'all'
|
|
52
51
|
Requires-Dist: mypy ==1.5.1 ; extra == 'all'
|
|
52
|
+
Requires-Dist: typing-extensions >=4.8.0 ; extra == 'all'
|
|
53
53
|
Requires-Dist: types-PyYAML ; extra == 'all'
|
|
54
54
|
Requires-Dist: types-requests ; extra == 'all'
|
|
55
55
|
Requires-Dist: types-simplejson ; extra == 'all'
|
|
@@ -61,7 +61,7 @@ Requires-Dist: InquirerPy ==0.3.4 ; extra == 'cli'
|
|
|
61
61
|
Provides-Extra: dev
|
|
62
62
|
Requires-Dist: InquirerPy ==0.3.4 ; extra == 'dev'
|
|
63
63
|
Requires-Dist: aiohttp ; extra == 'dev'
|
|
64
|
-
Requires-Dist: pydantic <
|
|
64
|
+
Requires-Dist: pydantic <3.0,>1.1 ; extra == 'dev'
|
|
65
65
|
Requires-Dist: jedi ; extra == 'dev'
|
|
66
66
|
Requires-Dist: Jinja2 ; extra == 'dev'
|
|
67
67
|
Requires-Dist: pytest ; extra == 'dev'
|
|
@@ -75,9 +75,9 @@ Requires-Dist: soundfile ; extra == 'dev'
|
|
|
75
75
|
Requires-Dist: Pillow ; extra == 'dev'
|
|
76
76
|
Requires-Dist: gradio ; extra == 'dev'
|
|
77
77
|
Requires-Dist: numpy ; extra == 'dev'
|
|
78
|
-
Requires-Dist:
|
|
79
|
-
Requires-Dist: ruff >=0.0.241 ; extra == 'dev'
|
|
78
|
+
Requires-Dist: ruff >=0.1.3 ; extra == 'dev'
|
|
80
79
|
Requires-Dist: mypy ==1.5.1 ; extra == 'dev'
|
|
80
|
+
Requires-Dist: typing-extensions >=4.8.0 ; extra == 'dev'
|
|
81
81
|
Requires-Dist: types-PyYAML ; extra == 'dev'
|
|
82
82
|
Requires-Dist: types-requests ; extra == 'dev'
|
|
83
83
|
Requires-Dist: types-simplejson ; extra == 'dev'
|
|
@@ -87,7 +87,7 @@ Requires-Dist: types-urllib3 ; extra == 'dev'
|
|
|
87
87
|
Provides-Extra: docs
|
|
88
88
|
Requires-Dist: InquirerPy ==0.3.4 ; extra == 'docs'
|
|
89
89
|
Requires-Dist: aiohttp ; extra == 'docs'
|
|
90
|
-
Requires-Dist: pydantic <
|
|
90
|
+
Requires-Dist: pydantic <3.0,>1.1 ; extra == 'docs'
|
|
91
91
|
Requires-Dist: jedi ; extra == 'docs'
|
|
92
92
|
Requires-Dist: Jinja2 ; extra == 'docs'
|
|
93
93
|
Requires-Dist: pytest ; extra == 'docs'
|
|
@@ -101,9 +101,9 @@ Requires-Dist: soundfile ; extra == 'docs'
|
|
|
101
101
|
Requires-Dist: Pillow ; extra == 'docs'
|
|
102
102
|
Requires-Dist: gradio ; extra == 'docs'
|
|
103
103
|
Requires-Dist: numpy ; extra == 'docs'
|
|
104
|
-
Requires-Dist:
|
|
105
|
-
Requires-Dist: ruff >=0.0.241 ; extra == 'docs'
|
|
104
|
+
Requires-Dist: ruff >=0.1.3 ; extra == 'docs'
|
|
106
105
|
Requires-Dist: mypy ==1.5.1 ; extra == 'docs'
|
|
106
|
+
Requires-Dist: typing-extensions >=4.8.0 ; extra == 'docs'
|
|
107
107
|
Requires-Dist: types-PyYAML ; extra == 'docs'
|
|
108
108
|
Requires-Dist: types-requests ; extra == 'docs'
|
|
109
109
|
Requires-Dist: types-simplejson ; extra == 'docs'
|
|
@@ -118,10 +118,9 @@ Requires-Dist: fastai >=2.4 ; extra == 'fastai'
|
|
|
118
118
|
Requires-Dist: fastcore >=1.3.27 ; extra == 'fastai'
|
|
119
119
|
Provides-Extra: inference
|
|
120
120
|
Requires-Dist: aiohttp ; extra == 'inference'
|
|
121
|
-
Requires-Dist: pydantic <
|
|
121
|
+
Requires-Dist: pydantic <3.0,>1.1 ; extra == 'inference'
|
|
122
122
|
Provides-Extra: quality
|
|
123
|
-
Requires-Dist:
|
|
124
|
-
Requires-Dist: ruff >=0.0.241 ; extra == 'quality'
|
|
123
|
+
Requires-Dist: ruff >=0.1.3 ; extra == 'quality'
|
|
125
124
|
Requires-Dist: mypy ==1.5.1 ; extra == 'quality'
|
|
126
125
|
Provides-Extra: tensorflow
|
|
127
126
|
Requires-Dist: tensorflow ; extra == 'tensorflow'
|
|
@@ -130,7 +129,7 @@ Requires-Dist: graphviz ; extra == 'tensorflow'
|
|
|
130
129
|
Provides-Extra: testing
|
|
131
130
|
Requires-Dist: InquirerPy ==0.3.4 ; extra == 'testing'
|
|
132
131
|
Requires-Dist: aiohttp ; extra == 'testing'
|
|
133
|
-
Requires-Dist: pydantic <
|
|
132
|
+
Requires-Dist: pydantic <3.0,>1.1 ; extra == 'testing'
|
|
134
133
|
Requires-Dist: jedi ; extra == 'testing'
|
|
135
134
|
Requires-Dist: Jinja2 ; extra == 'testing'
|
|
136
135
|
Requires-Dist: pytest ; extra == 'testing'
|
|
@@ -147,13 +146,14 @@ Requires-Dist: numpy ; extra == 'testing'
|
|
|
147
146
|
Provides-Extra: torch
|
|
148
147
|
Requires-Dist: torch ; extra == 'torch'
|
|
149
148
|
Provides-Extra: typing
|
|
149
|
+
Requires-Dist: typing-extensions >=4.8.0 ; extra == 'typing'
|
|
150
150
|
Requires-Dist: types-PyYAML ; extra == 'typing'
|
|
151
151
|
Requires-Dist: types-requests ; extra == 'typing'
|
|
152
152
|
Requires-Dist: types-simplejson ; extra == 'typing'
|
|
153
153
|
Requires-Dist: types-toml ; extra == 'typing'
|
|
154
154
|
Requires-Dist: types-tqdm ; extra == 'typing'
|
|
155
155
|
Requires-Dist: types-urllib3 ; extra == 'typing'
|
|
156
|
-
Requires-Dist: pydantic <
|
|
156
|
+
Requires-Dist: pydantic <3.0,>1.1 ; extra == 'typing'
|
|
157
157
|
|
|
158
158
|
<p align="center">
|
|
159
159
|
<br/>
|
|
@@ -177,6 +177,7 @@ Requires-Dist: pydantic <2.0 ; extra == 'typing'
|
|
|
177
177
|
<p>
|
|
178
178
|
<b>English</b> |
|
|
179
179
|
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_de.md">Deutsch</a> |
|
|
180
|
+
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_hi.md">हिंदी</a> |
|
|
180
181
|
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_ko.md">한국어</a>
|
|
181
182
|
<p>
|
|
182
183
|
</h4>
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
huggingface_hub/__init__.py,sha256=m_AdEFrtjPzao7U3Uywu_aSFL_Lim5HiywzatKiLvd0,19803
|
|
2
|
+
huggingface_hub/_commit_api.py,sha256=2OA0mNhjnVJWuhhKlkLcQQxGtnJhZ0RX1wRg0eOcgFM,26108
|
|
3
|
+
huggingface_hub/_commit_scheduler.py,sha256=FgfjYv3E0oK3iBxDdy45Y7t78FWkmjnBR4dRd5aZviU,13653
|
|
4
|
+
huggingface_hub/_inference_endpoints.py,sha256=0ZNCntMfYgrKmnhLC_fPRRcaXQxpA7fkZ6250X3ZXz4,13853
|
|
5
|
+
huggingface_hub/_login.py,sha256=-__f38crvH6glt51SkO5iDmwJBzkIXq5IezKTkROdec,14294
|
|
6
|
+
huggingface_hub/_multi_commits.py,sha256=xEiS4N8ZmIrrDxVGS93mA33VoVrbhlAp5T8M_XQTMiA,12518
|
|
7
|
+
huggingface_hub/_snapshot_download.py,sha256=10SrgvsjMY6B_86OPPgWnrS3mYGFcr4cbkywFWirlao,11809
|
|
8
|
+
huggingface_hub/_space_api.py,sha256=Kr1rRpbMVoUs51U52KFY_FQcMA9TEC7RDCKGB4nzGus,5116
|
|
9
|
+
huggingface_hub/_tensorboard_logger.py,sha256=3W8eUS3jhZ3WyVG9Hi6rVwZC-jcCyRunBns5vIniGfA,7165
|
|
10
|
+
huggingface_hub/_webhooks_payload.py,sha256=0v4VuOXYt9sshqPi96I1ymALkiyGWBYqX2KSAxGrqUU,2803
|
|
11
|
+
huggingface_hub/_webhooks_server.py,sha256=2wETO28XU2NSLnG-ardYbcLCuVbPL8e_Pl83_4-MngA,14757
|
|
12
|
+
huggingface_hub/community.py,sha256=FTuDzikTckQKCU29ZoeEHCg_qRXEqqdiPY3_dIiTsAo,12088
|
|
13
|
+
huggingface_hub/constants.py,sha256=4uJitslom26sZnhesezZi44KVlIRGfmdlFzQ6E7sj6s,6938
|
|
14
|
+
huggingface_hub/fastai_utils.py,sha256=5I7zAfgHJU_mZnxnf9wgWTHrCRu_EAV8VTangDVfE_o,16676
|
|
15
|
+
huggingface_hub/file_download.py,sha256=e2uff9eYmuQRBE5TObvZgzT6l4KoJmqKL80BziNRx0k,74545
|
|
16
|
+
huggingface_hub/hf_api.py,sha256=PW5MLw81kRu5jVzLQaN7HpErvhkBnIRznWOwPO8rFLU,297182
|
|
17
|
+
huggingface_hub/hf_file_system.py,sha256=-bey7gY5NAhAFfBZTkudmjfUuJds5YvIZTpcv-UR_oI,21682
|
|
18
|
+
huggingface_hub/hub_mixin.py,sha256=_LA7RdQMpzqSigaCp6xPlB8ZxmFa3SDmW8RGJP0D7zQ,16104
|
|
19
|
+
huggingface_hub/inference_api.py,sha256=UXOKu_Ez2I3hDsjguqCcCrj03WFDndehpngYiIAucdg,8331
|
|
20
|
+
huggingface_hub/keras_mixin.py,sha256=BG_Ck_dbaKecW2y2keGXAxVSpPyLACLmWVsd2larcJU,18837
|
|
21
|
+
huggingface_hub/lfs.py,sha256=prum9TUWYQ4oHIaNCB93MpBi6T3MvCTmMfPKLn1ePj8,18750
|
|
22
|
+
huggingface_hub/repocard.py,sha256=xgHKwiz10LKnTBuvU0RJPtx_eDJAuOaPn3JDSO1Qorc,34311
|
|
23
|
+
huggingface_hub/repocard_data.py,sha256=KMJv1Pmb_ZvjTbkK8CsUcJd7VYvbPgAOCbLRyEeY0Zs,29758
|
|
24
|
+
huggingface_hub/repository.py,sha256=lmn5HM2Z0GhOqRg6YxrI08jGZsNHN7IfHF5e_btaH2g,54465
|
|
25
|
+
huggingface_hub/commands/__init__.py,sha256=AkbM2a-iGh0Vq_xAWhK3mu3uZ44km8-X5uWjKcvcrUQ,928
|
|
26
|
+
huggingface_hub/commands/_cli_utils.py,sha256=VA_3cHzIlsEQmKPnfNTgJNI36UtcrxRmfB44RdbP1LA,1970
|
|
27
|
+
huggingface_hub/commands/delete_cache.py,sha256=9Nn2ihdORPpkULkhAzju6aYar2rsa4laSE38rt8645I,16130
|
|
28
|
+
huggingface_hub/commands/download.py,sha256=sthMmLQD3E0uybAlGoYt1Mpk_8w7r_im7FyDGJrZWyo,9161
|
|
29
|
+
huggingface_hub/commands/env.py,sha256=LJjOxo-m0DrvQdyhWGjnLGtWt91ec63BMI4FQ-5bWXQ,1225
|
|
30
|
+
huggingface_hub/commands/huggingface_cli.py,sha256=o862C98OcZoyqCzY7mNpia1h0KaLJUgSb0y10ot8sxA,1924
|
|
31
|
+
huggingface_hub/commands/lfs.py,sha256=6E769AoRxUDiIOapn1_QvTbNtdUnUiouu2F4Gopp4do,7318
|
|
32
|
+
huggingface_hub/commands/scan_cache.py,sha256=nMEJxBScezxs00EWyAvJtWCjhwxCL1YlBE6qNfiT3RY,5182
|
|
33
|
+
huggingface_hub/commands/upload.py,sha256=nDUKGE8WVM_rppo06iZjvaOBhuHN9Ex3CFc-7dN0hys,12894
|
|
34
|
+
huggingface_hub/commands/user.py,sha256=Xs73CDru88RN7iCU55kUVaWHRk02xi9yCotDI7oHnH8,6910
|
|
35
|
+
huggingface_hub/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
huggingface_hub/inference/_client.py,sha256=hUlqIJCE3NeK0tW_Rii9Y0my7gryl1Zl1twIKMr5ciY,84856
|
|
37
|
+
huggingface_hub/inference/_common.py,sha256=8GaagYW1hoSWjilWgMdbpJU4sK78l1RPKPBsvGHpXGU,11331
|
|
38
|
+
huggingface_hub/inference/_text_generation.py,sha256=5LZYv8eHKJKKYGQ9bPQD3cfxfB5r5ib_zdRVkfK4BJc,19513
|
|
39
|
+
huggingface_hub/inference/_types.py,sha256=fRrORbJbZqCxZVQG4HK4Zx4xHwPej-Hppz_cb1wJ1I0,5664
|
|
40
|
+
huggingface_hub/inference/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
+
huggingface_hub/inference/_generated/_async_client.py,sha256=ISKsOeKAtsWps-A92RPtsH7uvp0tSHj4DtDSFxJ_lTU,87640
|
|
42
|
+
huggingface_hub/templates/datasetcard_template.md,sha256=tWvaTQhO3WkU9Igi8Odwb44my9oYKAakb2ArfnTn1AU,5502
|
|
43
|
+
huggingface_hub/templates/modelcard_template.md,sha256=pBCvR-wtS5N6kYvpEo82OWd71gNpd9zcwXxULAoiu4I,6856
|
|
44
|
+
huggingface_hub/utils/__init__.py,sha256=GzV6hJwU2jPrxCixuJbsa4-P7mRg1_wGZI6LFTI1ozA,3024
|
|
45
|
+
huggingface_hub/utils/_cache_assets.py,sha256=kai77HPQMfYpROouMBQCr_gdBCaeTm996Sqj0dExbNg,5728
|
|
46
|
+
huggingface_hub/utils/_cache_manager.py,sha256=zRBo37DaHS6IDWyQ_53oCL4-U6p--inAGsC8DLtAQ_I,29103
|
|
47
|
+
huggingface_hub/utils/_chunk_utils.py,sha256=6VRyjiGr2bPupPl1azSUTxKuJ51wdgELipwJ2YRfH5U,2129
|
|
48
|
+
huggingface_hub/utils/_datetime.py,sha256=7pwXpJy2J4mNb4PwNxilYynvhPWMYX261pHiNbfUSEg,2918
|
|
49
|
+
huggingface_hub/utils/_deprecation.py,sha256=oc30GmTjW1ccr8I7_-WnGaPYfqNrnJ8CNkQSUu0uAX4,4735
|
|
50
|
+
huggingface_hub/utils/_errors.py,sha256=arUs2RLTpD9DMl89h2z7WrtTDoRQr1WQvvHNwd8AWf0,13956
|
|
51
|
+
huggingface_hub/utils/_experimental.py,sha256=rBx4gV2NU1dT_OfeRzsCmCWyIF4Wxcf0PdkmIASoT6o,2394
|
|
52
|
+
huggingface_hub/utils/_fixes.py,sha256=wFvfTYj62Il2OwkQB_Qp0xONG6SARQ5oEkT3_FhB4rc,2437
|
|
53
|
+
huggingface_hub/utils/_git_credential.py,sha256=8tOMTZBPTm7Z2nTw-6OknP6BW9zglLJK-wwiPI9FxIM,4047
|
|
54
|
+
huggingface_hub/utils/_headers.py,sha256=OwP8mzgMwXKLhjwRPwy0Q6-NeQLOgitF2CHuF8o8rzs,9358
|
|
55
|
+
huggingface_hub/utils/_hf_folder.py,sha256=fKlci83pmM5LDHAhTXI9heugIyqbAByCmN7KJzbtWKA,3994
|
|
56
|
+
huggingface_hub/utils/_http.py,sha256=7NFfwcLMYkJcDkXujlasG63LYlrOq-svvMAZD5q5jGM,12157
|
|
57
|
+
huggingface_hub/utils/_pagination.py,sha256=VfpmMLyNCRo24fw0o_yWysMK69d9M6sSg2-nWtuypO4,1840
|
|
58
|
+
huggingface_hub/utils/_paths.py,sha256=nUaxXN-R2EcWfHE8ivFWfHqEKMIvXEdUeCGDC_QHMqc,4397
|
|
59
|
+
huggingface_hub/utils/_runtime.py,sha256=f0dCZ0c8OR4d_l0TS6NY1gZ8H3bHXhAUJCKRep4tmuo,8990
|
|
60
|
+
huggingface_hub/utils/_subprocess.py,sha256=LW9b8TWh9rsm3pW9_5b-mVV_AtYNyLXgC6e09SthkWI,4616
|
|
61
|
+
huggingface_hub/utils/_telemetry.py,sha256=jHAdgWNcL9nVvMT3ec3i78O-cwL09GnlifuokzpQjMI,4641
|
|
62
|
+
huggingface_hub/utils/_typing.py,sha256=zTA0nTJAILGveXbJKyeh6u9uIagrFgPoRqr-uCEGDQI,921
|
|
63
|
+
huggingface_hub/utils/_validators.py,sha256=3ZmHubjslDRwFYe1oKyaUw6DZrc3DsuV2gABPrx7PTw,9358
|
|
64
|
+
huggingface_hub/utils/endpoint_helpers.py,sha256=reLS2ic6_BTe9RuZY5WLcd5dLjIWt5Klh5EHZ7XvHng,8533
|
|
65
|
+
huggingface_hub/utils/insecure_hashlib.py,sha256=OjxlvtSQHpbLp9PWSrXBDJ0wHjxCBU-SQJgucEEXDbU,1058
|
|
66
|
+
huggingface_hub/utils/logging.py,sha256=mARNwc5gY6apMQ9IM5zymn-RsYnFbYW3b0HDMYXmBS0,4729
|
|
67
|
+
huggingface_hub/utils/sha.py,sha256=IVi7CfBthfu-ExLduY_CQltTy-tVGTbrvURCTOWKcLA,901
|
|
68
|
+
huggingface_hub/utils/tqdm.py,sha256=zBWgoxxwHooOceABVREVqSNpJGcMpaByKFVDU8VbuUQ,6334
|
|
69
|
+
huggingface_hub-0.19.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
70
|
+
huggingface_hub-0.19.0.dist-info/METADATA,sha256=A8kX6azV0Muh4YByuKE8oc4fmYdLte9_5ibNsiMg95M,13609
|
|
71
|
+
huggingface_hub-0.19.0.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
72
|
+
huggingface_hub-0.19.0.dist-info/entry_points.txt,sha256=Y3Z2L02rBG7va_iE6RPXolIgwOdwUFONyRN3kXMxZ0g,131
|
|
73
|
+
huggingface_hub-0.19.0.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
|
|
74
|
+
huggingface_hub-0.19.0.dist-info/RECORD,,
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
huggingface_hub/__init__.py,sha256=6R3gCZM9lG__zz5ZeBGkjWikzbs1WsyDHL4XITjuGkA,18784
|
|
2
|
-
huggingface_hub/_commit_api.py,sha256=t_L7zHn46QIKA2JRewe3j6A3uJq5-SbD-c3byZolZSE,26410
|
|
3
|
-
huggingface_hub/_commit_scheduler.py,sha256=FgfjYv3E0oK3iBxDdy45Y7t78FWkmjnBR4dRd5aZviU,13653
|
|
4
|
-
huggingface_hub/_login.py,sha256=x23VDrus7c4w_g0OgdgiihzgR0iwsaq-58xvgTSloSw,14265
|
|
5
|
-
huggingface_hub/_multi_commits.py,sha256=j1Pvo-c8H5lWIh1lixIWCE4KXTBMK5f2gc7o8U6wSoo,12502
|
|
6
|
-
huggingface_hub/_snapshot_download.py,sha256=LadYOT122mE1qZn3Bo5LXX1fBfRZEFSuXS4bxUDgI3Q,11873
|
|
7
|
-
huggingface_hub/_space_api.py,sha256=mxV1CnFZX3Qi9xjpuNicFLCz-ZRDXm2D6wokYET7Q7s,4988
|
|
8
|
-
huggingface_hub/_tensorboard_logger.py,sha256=_gBNoN9mq1_63H95m8lNDkuPjnf7xVD4KFkCoxxIagU,7164
|
|
9
|
-
huggingface_hub/_webhooks_payload.py,sha256=_J_wdbIsJWKcJgAHR-TedLH22cpa8bzuVAGSqKriJ2o,2754
|
|
10
|
-
huggingface_hub/_webhooks_server.py,sha256=2wETO28XU2NSLnG-ardYbcLCuVbPL8e_Pl83_4-MngA,14757
|
|
11
|
-
huggingface_hub/community.py,sha256=FTuDzikTckQKCU29ZoeEHCg_qRXEqqdiPY3_dIiTsAo,12088
|
|
12
|
-
huggingface_hub/constants.py,sha256=rhZDyP6P4XLmK4eVMlQnQquqnBm10543K8HD0vHJsoM,5797
|
|
13
|
-
huggingface_hub/fastai_utils.py,sha256=5I7zAfgHJU_mZnxnf9wgWTHrCRu_EAV8VTangDVfE_o,16676
|
|
14
|
-
huggingface_hub/file_download.py,sha256=Een96F-0Qfgd1OdwWTJB3vGKI3jGwFBhBpW7zUThrAI,72994
|
|
15
|
-
huggingface_hub/hf_api.py,sha256=P9EFB4SYAqs-mjgxXOGIwYVagEgZwf3-ov9nWf3OpDo,272995
|
|
16
|
-
huggingface_hub/hf_file_system.py,sha256=GxjLvgwZEYzoCpHQxRVzJuqMBz_v43Nk55g2JEo5hio,19822
|
|
17
|
-
huggingface_hub/hub_mixin.py,sha256=owjmMbrZ_LjbURBrGp99XmHMXiPAj3cDdosG92mkLpI,16130
|
|
18
|
-
huggingface_hub/inference_api.py,sha256=BMYNBYIZixXgIXPFiMfgY3Mki39bsSiXbPVTmPoZMkk,8334
|
|
19
|
-
huggingface_hub/keras_mixin.py,sha256=BG_Ck_dbaKecW2y2keGXAxVSpPyLACLmWVsd2larcJU,18837
|
|
20
|
-
huggingface_hub/lfs.py,sha256=ZEmyc1CdA3BuPmqkTGDCT2h4IB-r5DqA47E8gouPS6g,17884
|
|
21
|
-
huggingface_hub/repocard.py,sha256=xgHKwiz10LKnTBuvU0RJPtx_eDJAuOaPn3JDSO1Qorc,34311
|
|
22
|
-
huggingface_hub/repocard_data.py,sha256=GBcgbCUV4kcwht0VExoUJpIogxZUnGQhR2qQBeD34AE,29580
|
|
23
|
-
huggingface_hub/repository.py,sha256=ioL9eEV0ITtV5LbJ85IQ-EV7prqZmPWkiUen9PWDA3s,53703
|
|
24
|
-
huggingface_hub/commands/__init__.py,sha256=AkbM2a-iGh0Vq_xAWhK3mu3uZ44km8-X5uWjKcvcrUQ,928
|
|
25
|
-
huggingface_hub/commands/_cli_utils.py,sha256=VA_3cHzIlsEQmKPnfNTgJNI36UtcrxRmfB44RdbP1LA,1970
|
|
26
|
-
huggingface_hub/commands/delete_cache.py,sha256=9Nn2ihdORPpkULkhAzju6aYar2rsa4laSE38rt8645I,16130
|
|
27
|
-
huggingface_hub/commands/download.py,sha256=sthMmLQD3E0uybAlGoYt1Mpk_8w7r_im7FyDGJrZWyo,9161
|
|
28
|
-
huggingface_hub/commands/env.py,sha256=LJjOxo-m0DrvQdyhWGjnLGtWt91ec63BMI4FQ-5bWXQ,1225
|
|
29
|
-
huggingface_hub/commands/huggingface_cli.py,sha256=o862C98OcZoyqCzY7mNpia1h0KaLJUgSb0y10ot8sxA,1924
|
|
30
|
-
huggingface_hub/commands/lfs.py,sha256=Y0ENdtUKO1rwfslUE1jUuBhobpzvsG952auIFgBrHzM,7348
|
|
31
|
-
huggingface_hub/commands/scan_cache.py,sha256=nMEJxBScezxs00EWyAvJtWCjhwxCL1YlBE6qNfiT3RY,5182
|
|
32
|
-
huggingface_hub/commands/upload.py,sha256=nDUKGE8WVM_rppo06iZjvaOBhuHN9Ex3CFc-7dN0hys,12894
|
|
33
|
-
huggingface_hub/commands/user.py,sha256=aPnSVO4OU86rb8NAL43s-5i2QDBfj0UoeubBJLJ1i8M,6955
|
|
34
|
-
huggingface_hub/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
huggingface_hub/inference/_client.py,sha256=vMixe4Qege02o-DUHyEX5Ub6GGh4AL8qMeVD4PdpxlA,83323
|
|
36
|
-
huggingface_hub/inference/_common.py,sha256=uvA9c2W8vSUGkJNpbx2qHMtD5FVL5GVcE7HaVty3qKY,11338
|
|
37
|
-
huggingface_hub/inference/_text_generation.py,sha256=R_muTr3yx4StxA3gcru8hqBxd3F5eCJmUNVBLsTk-GE,17274
|
|
38
|
-
huggingface_hub/inference/_types.py,sha256=fRrORbJbZqCxZVQG4HK4Zx4xHwPej-Hppz_cb1wJ1I0,5664
|
|
39
|
-
huggingface_hub/inference/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
huggingface_hub/inference/_generated/_async_client.py,sha256=y-YICUeIKp50gxHm7YuHUly-cEDAL8SZ9j6TZss6jas,86187
|
|
41
|
-
huggingface_hub/templates/datasetcard_template.md,sha256=9RRyo88T8dv5oNfjgEGX2NhCR0vW_Y-cGlvfbJ7J5Ro,2721
|
|
42
|
-
huggingface_hub/templates/modelcard_template.md,sha256=zgehAu_isrwVL6g1Q3fDIgCHPjjsppO6U9IYlsSaoyI,6766
|
|
43
|
-
huggingface_hub/utils/__init__.py,sha256=2zT29QdBGpI0dTfeHVKlu6FiXI68fRVhR18QBJBCnaU,3008
|
|
44
|
-
huggingface_hub/utils/_cache_assets.py,sha256=QmI_qlzsOpjK0B6k4GYiLFrKzq3mFLQVoTn2pmWqshE,5755
|
|
45
|
-
huggingface_hub/utils/_cache_manager.py,sha256=r-x578yTOhnW1-EyAnw8L8jgon2okT-k5cRA3hDVDv0,29097
|
|
46
|
-
huggingface_hub/utils/_chunk_utils.py,sha256=6VRyjiGr2bPupPl1azSUTxKuJ51wdgELipwJ2YRfH5U,2129
|
|
47
|
-
huggingface_hub/utils/_datetime.py,sha256=RA92d7k3pV6JKmRXFvsofgp1oHfjMZb5Y-X0vpTIkgQ,2728
|
|
48
|
-
huggingface_hub/utils/_deprecation.py,sha256=oc30GmTjW1ccr8I7_-WnGaPYfqNrnJ8CNkQSUu0uAX4,4735
|
|
49
|
-
huggingface_hub/utils/_errors.py,sha256=T6AyAqXpt1ZKiGqIYvWe3PhiFNtXtfK_hFoKrJMXk38,13490
|
|
50
|
-
huggingface_hub/utils/_experimental.py,sha256=rBx4gV2NU1dT_OfeRzsCmCWyIF4Wxcf0PdkmIASoT6o,2394
|
|
51
|
-
huggingface_hub/utils/_fixes.py,sha256=wFvfTYj62Il2OwkQB_Qp0xONG6SARQ5oEkT3_FhB4rc,2437
|
|
52
|
-
huggingface_hub/utils/_git_credential.py,sha256=8tOMTZBPTm7Z2nTw-6OknP6BW9zglLJK-wwiPI9FxIM,4047
|
|
53
|
-
huggingface_hub/utils/_headers.py,sha256=OwP8mzgMwXKLhjwRPwy0Q6-NeQLOgitF2CHuF8o8rzs,9358
|
|
54
|
-
huggingface_hub/utils/_hf_folder.py,sha256=_94Fo9S-r8mvqFWXW6cvV1jA2Q6S-wSH44JOBxMbZ04,3876
|
|
55
|
-
huggingface_hub/utils/_http.py,sha256=CTgSlkQO575XRLRrf7Dzgt1f6hiUVCOBxFKa3uVGvuc,11922
|
|
56
|
-
huggingface_hub/utils/_pagination.py,sha256=VfpmMLyNCRo24fw0o_yWysMK69d9M6sSg2-nWtuypO4,1840
|
|
57
|
-
huggingface_hub/utils/_paths.py,sha256=nUaxXN-R2EcWfHE8ivFWfHqEKMIvXEdUeCGDC_QHMqc,4397
|
|
58
|
-
huggingface_hub/utils/_runtime.py,sha256=l3uzjQzcVGBfpeLv6YziyWYEZIlZTrhnkwqNqDa1k0g,8890
|
|
59
|
-
huggingface_hub/utils/_subprocess.py,sha256=LW9b8TWh9rsm3pW9_5b-mVV_AtYNyLXgC6e09SthkWI,4616
|
|
60
|
-
huggingface_hub/utils/_telemetry.py,sha256=jHAdgWNcL9nVvMT3ec3i78O-cwL09GnlifuokzpQjMI,4641
|
|
61
|
-
huggingface_hub/utils/_typing.py,sha256=zTA0nTJAILGveXbJKyeh6u9uIagrFgPoRqr-uCEGDQI,921
|
|
62
|
-
huggingface_hub/utils/_validators.py,sha256=3ZmHubjslDRwFYe1oKyaUw6DZrc3DsuV2gABPrx7PTw,9358
|
|
63
|
-
huggingface_hub/utils/endpoint_helpers.py,sha256=KCIjPkv2goSpD6b4EI6TIPK28lyQaewV3eUw5yMlrCY,12857
|
|
64
|
-
huggingface_hub/utils/logging.py,sha256=-Uov2WGLv16hS-V4Trvs_XO-TvSeZ1xIWZ-cfvDl7ac,4778
|
|
65
|
-
huggingface_hub/utils/sha.py,sha256=Wmeh2lwS2H0_CNLqDk_mNyb4jAjfTdlG6FZsuh6LqVg,890
|
|
66
|
-
huggingface_hub/utils/tqdm.py,sha256=zBWgoxxwHooOceABVREVqSNpJGcMpaByKFVDU8VbuUQ,6334
|
|
67
|
-
huggingface_hub-0.18.0rc0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
68
|
-
huggingface_hub-0.18.0rc0.dist-info/METADATA,sha256=E0h9qeY6pntU0LTB4SWMUulU4SMMuTl0R2yIkjt-THE,13428
|
|
69
|
-
huggingface_hub-0.18.0rc0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
70
|
-
huggingface_hub-0.18.0rc0.dist-info/entry_points.txt,sha256=Y3Z2L02rBG7va_iE6RPXolIgwOdwUFONyRN3kXMxZ0g,131
|
|
71
|
-
huggingface_hub-0.18.0rc0.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
|
|
72
|
-
huggingface_hub-0.18.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|