database / filesystem.py
xcx0902's picture
Upload folder using huggingface_hub
61a1270 verified
raw
history blame
401 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"
)
def upload():
api.upload_folder(
folder_path=".",
repo_type="dataset",
repo_id="xcx0902/database",
allow_patterns="database.db"
)