language-detection-api / create_space.py
User
Initial commit
979c7a7
raw
history blame contribute delete
402 Bytes
from huggingface_hub import HfApi
import os
# Initialize the Hugging Face API client
api = HfApi()
# Create a new Space
space_name = "language-detection-api"
api.create_repo(
repo_id=space_name,
repo_type="space",
space_sdk="docker",
private=False
)
print(f"Space created successfully: https://huggingface.co./spaces/{os.getenv('HUGGING_FACE_HUB_TOKEN').split('/')[0]}/{space_name}")