File size: 372 Bytes
484a0ad
 
 
 
 
 
 
 
 
 
3d3fd31
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from huggingface_hub import HfApi
import os

api = HfApi()

api.upload_folder(
    folder_path=".",
    repo_id="Diaure/Futurisys_API_ML",
    repo_type="space",
    token=os.environ["HF_TOKEN"],
    commit_message="CD: update from GitHub main",
    ignore_patterns=[".git/*", ".github/*", "tests/*", "__pycache__/*", 
                     "*.pyc", ".venv/*", "venv/*" ])