Futurisys_API_ML / deploy_to_hf.py
Diaure's picture
CD: update from GitHub main
3d3fd31 verified
raw
history blame contribute delete
372 Bytes
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/*" ])