File size: 250 Bytes
828977a
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from huggingface_hub import HfApi

api = HfApi()

repo_url = api.create_repo(
    name="rixette-vnc-space",
    repo_type="space",
    space_sdk="docker",   # or 'gradio', 'streamlit', 'static'
    exist_ok=False,
)

print("Repo created:", repo_url)