letxinet-lat / hf_upload.py
C2MV's picture
fix: Pin Python 3.10 to fix audioop error
5890621 verified
Raw
History Blame Contribute Delete
308 Bytes
from huggingface_hub import HfApi
api = HfApi()
api.upload_folder(
folder_path=".",
repo_id="C2MV/letxinet",
repo_type="space",
ignore_patterns=["venv/*", ".env", ".git/*", "*/__pycache__/*", "*.db"],
commit_message="fix: Pin Python 3.10 to fix audioop error"
)
print("Upload complete!")