| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- # 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
- # ruff: noqa: F401
- from huggingface_hub.errors import (
- BadRequestError,
- BucketNotFoundError,
- CacheNotFound,
- CorruptedCacheException,
- DisabledRepoError,
- EntryNotFoundError,
- FileMetadataError,
- GatedRepoError,
- HfHubHTTPError,
- HFValidationError,
- LocalEntryNotFoundError,
- LocalTokenNotFoundError,
- NotASafetensorsRepoError,
- OfflineModeIsEnabled,
- RepositoryNotFoundError,
- RevisionNotFoundError,
- SafetensorsParsingError,
- )
- from . import tqdm as _tqdm # _tqdm is the module
- from ._auth import get_stored_tokens, get_token
- from ._cache_assets import cached_assets_path
- from ._cache_manager import (
- CachedFileInfo,
- CachedRepoInfo,
- CachedRevisionInfo,
- DeleteCacheStrategy,
- HFCacheInfo,
- _format_size,
- scan_cache_dir,
- )
- from ._chunk_utils import chunk_iterable
- from ._datetime import parse_datetime
- from ._detect_agent import detect_agent, is_agent
- from ._experimental import experimental
- from ._fixes import SoftTemporaryDirectory, WeakFileLock, 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
- from ._http import (
- ASYNC_CLIENT_FACTORY_T,
- CLIENT_FACTORY_T,
- RateLimitInfo,
- close_session,
- fix_hf_endpoint_in_url,
- get_async_session,
- get_session,
- hf_raise_for_status,
- http_backoff,
- http_stream_backoff,
- parse_ratelimit_headers,
- set_async_client_factory,
- set_client_factory,
- )
- from ._pagination import paginate
- from ._paths import DEFAULT_IGNORE_PATTERNS, FORBIDDEN_FOLDERS, filter_repo_objects
- from ._runtime import (
- dump_environment_info,
- get_aiohttp_version,
- get_fastai_version,
- get_fastapi_version,
- get_fastcore_version,
- get_gradio_version,
- get_graphviz_version,
- get_hf_hub_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,
- installation_method,
- is_aiohttp_available,
- is_colab_enterprise,
- is_fastai_available,
- is_fastapi_available,
- is_fastcore_available,
- is_google_colab,
- is_gradio_available,
- is_graphviz_available,
- is_jinja_available,
- is_notebook,
- is_numpy_available,
- is_package_available,
- is_pillow_available,
- is_pydantic_available,
- is_pydot_available,
- is_safetensors_available,
- is_tensorboard_available,
- is_tf_available,
- is_torch_available,
- )
- from ._safetensors import SafetensorsFileMetadata, SafetensorsRepoMetadata, TensorInfo
- from ._subprocess import capture_output, run_interactive_subprocess, run_subprocess
- from ._telemetry import send_telemetry
- from ._terminal import ANSI, StatusLine, tabulate
- from ._typing import is_jsonable, is_simple_optional_type, unwrap_simple_optional_type
- from ._validators import validate_hf_hub_args, validate_repo_id
- from ._xet import (
- XetConnectionInfo,
- XetFileData,
- XetTokenType,
- fetch_xet_connection_info_from_repo_info,
- parse_xet_file_data_from_response,
- refresh_xet_connection_info,
- )
- from .tqdm import (
- are_progress_bars_disabled,
- disable_progress_bars,
- enable_progress_bars,
- is_tqdm_disabled,
- silent_tqdm,
- tqdm,
- tqdm_stream_file,
- )
|