Prashantbhat1607's picture
Upload folder using huggingface_hub
9d17f57 verified
raw
history blame contribute delete
288 Bytes
from huggingface_hub import HfApi
import os
api = HfApi()
# Use your specific HF username and Space name here
repo_id = "prashantbhatconsultant/wellness-predictor-app"
api.upload_folder(
folder_path=".",
repo_id=repo_id,
repo_type="space",
token=os.getenv("HF_TOKEN")
)