File size: 367 Bytes
acf3b96
7011484
5b344d4
 
bafb458
 
6926f52
bafb458
 
5ae8333
 
1
2
3
4
5
6
7
8
9
10
11
12
from huggingface_hub import HfApi

from src.huggingface.get_environments import get_environments
from src.huggingface.get_files import get_mp4_paths


class HuggingFaceClient:
    def __init__(self) -> None:
        self.hf_api = HfApi()
        self.environments = get_environments(self.hf_api)
        self.mp4_paths = get_mp4_paths(environments=self.environments)