File size: 3,239 Bytes
c8e7ce2 |
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 |
# flake8: noqa
#!/usr/bin/env python
# coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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
from . import tqdm as _tqdm # _tqdm is the module
from ._cache_assets import cached_assets_path
from ._cache_manager import (
CachedFileInfo,
CachedRepoInfo,
CachedRevisionInfo,
CacheNotFound,
CorruptedCacheException,
DeleteCacheStrategy,
HFCacheInfo,
scan_cache_dir,
)
from ._chunk_utils import chunk_iterable
from ._datetime import parse_datetime
from ._errors import (
BadRequestError,
EntryNotFoundError,
FileMetadataError,
GatedRepoError,
HfHubHTTPError,
LocalEntryNotFoundError,
RepositoryNotFoundError,
RevisionNotFoundError,
hf_raise_for_status,
)
from ._token import get_token
from ._fixes import SoftTemporaryDirectory, yaml_dump
from ._git_credential import list_credential_helpers, set_git_credential, unset_git_credential
from ._headers import build_hf_headers, get_token_to_send, LocalTokenNotFoundError
from ._hf_folder import HfFolder
from ._http import configure_http_backend, get_session, http_backoff, reset_sessions, OfflineModeIsEnabled
from ._pagination import paginate
from ._paths import filter_repo_objects, IGNORE_GIT_FOLDER_PATTERNS
from ._experimental import experimental
from ._runtime import (
dump_environment_info,
get_aiohttp_version,
get_fastai_version,
get_fastcore_version,
get_gradio_version,
get_graphviz_version,
get_hf_hub_version,
get_hf_transfer_version,
get_jinja_version,
get_numpy_version,
get_pillow_version,
get_pydantic_version,
get_pydot_version,
get_python_version,
get_tensorboard_version,
get_tf_version,
get_torch_version,
is_aiohttp_available,
is_fastai_available,
is_fastcore_available,
is_numpy_available,
is_google_colab,
is_gradio_available,
is_graphviz_available,
is_hf_transfer_available,
is_jinja_available,
is_notebook,
is_pillow_available,
is_pydantic_available,
is_pydot_available,
is_tensorboard_available,
is_tf_available,
is_torch_available,
)
from ._safetensors import (
SafetensorsFileMetadata,
SafetensorsRepoMetadata,
TensorInfo,
SafetensorsParsingError,
NotASafetensorsRepoError,
)
from ._subprocess import capture_output, run_interactive_subprocess, run_subprocess
from ._validators import (
HFValidationError,
smoothly_deprecate_use_auth_token,
validate_hf_hub_args,
validate_repo_id,
)
from .tqdm import (
are_progress_bars_disabled,
disable_progress_bars,
enable_progress_bars,
tqdm,
tqdm_stream_file,
)
from ._telemetry import send_telemetry
|