Skip to content

credentials_manager

Utility functions for execlib, including AWS and Hugging Face credential management.

Functions:

apply_credentials

apply_credentials(*services: str) -> None

Apply credentials for the specified services.

Source code in src/unibox/utils/credentials_manager.py
112
113
114
115
def apply_credentials(*services: str) -> None:
    """Apply credentials for the specified services."""
    manager = CredentialManager()
    manager.apply_credentials(*services)