Data_Storage / app_createDataBranch.py
linxinhua's picture
Rename app.py to app_createDataBranch.py
ce22e00 verified
Raw
History Blame Contribute Delete
209 Bytes
from huggingface_hub import create_branch
import os
HF_HUB_TOKEN = os.environ.get("HF_HUB_TOKEN", None)
create_branch(repo_id="CIV3283/Data_Storage", repo_type="space", branch="data_branch",token=HF_HUB_TOKEN)