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
115
116
117
118
119
120
def apply_credentials( *services: str) -> None:
    """
    Apply credentials for the specified services.
    """
    manager = CredentialManager()
    manager.apply_credentials(*services)