database / filesystem.py
xcx0902's picture
Upload folder using huggingface_hub
a8c5296 verified
raw
history blame contribute delete
424 Bytes
from huggingface_hub import HfApi
import os
api = HfApi(token=os.getenv("HF_TOKEN"))
def download():
api.hf_hub_download(
repo_type="dataset",
repo_id="xcx0902/database",
filename="database.db",
local_dir="."
)
def upload():
api.upload_folder(
folder_path=".",
repo_type="dataset",
repo_id="xcx0902/database",
allow_patterns="database.db"
)