|
|
|
import os |
|
import sys |
|
from huggingface_hub import create_branch, delete_branch, login, get_token, whoami |
|
|
|
|
|
oname = os.name |
|
if oname == 'nt': |
|
osclear = 'cls' |
|
elif oname == 'posix': |
|
osclear = 'clear' |
|
else: |
|
osclear = '' |
|
def clear_screen(): |
|
os.system(osclear) |
|
|
|
|
|
clear_screen() |
|
|
|
|
|
|
|
while True: |
|
cord = input("What would you like to do? (create) (delete): ").lower() |
|
|
|
if cord not in ['create', 'delete', 'c', 'd']: |
|
clear_screen() |
|
print("Please choose one of the following two options.") |
|
continue |
|
if cord == 'c': |
|
cord = 'create' |
|
elif cord == 'd': |
|
cord = 'delete' |
|
break |
|
clear_screen() |
|
|
|
repo = input("Repository name (User/Repo): ") |
|
clear_screen() |
|
|
|
while True: |
|
r_type = input("Repo type (model) (dataset) (space): ").lower() |
|
|
|
if r_type not in ['model', 'dataset', 'space', 'm', 'd', 's']: |
|
clear_screen() |
|
print("Please choose one of the following three options.") |
|
continue |
|
if r_type == 'm': |
|
r_type = 'model' |
|
elif r_type == 'd': |
|
r_type = 'dataset' |
|
elif r_type == 's': |
|
r_type = 'space' |
|
break |
|
clear_screen() |
|
|
|
branch = input("Branch name (No spaces): ") |
|
clear_screen() |
|
|
|
if cord == 'create': |
|
rev = input("Revision to clone from (Can be a branch name or the OID/SHA of a commit) (Empty clones main): ") |
|
if rev == '': |
|
rev = 'main' |
|
clear_screen() |
|
|
|
|
|
if os.environ.get('KAGGLE_KERNEL_RUN_TYPE', None) is not None: |
|
from kaggle_secrets import UserSecretsClient |
|
from kaggle_web_client import BackendError |
|
try: |
|
login(UserSecretsClient().get_secret("HF_TOKEN")) |
|
except BackendError: |
|
print(''' |
|
When using Kaggle, make sure to use the secret key HF_TOKEN with a 'WRITE' token. |
|
This will prevent the need to login every time you run the script. |
|
Set your secrets with the secrets add-on on the top of the screen. |
|
''') |
|
if get_token() is not None: |
|
|
|
login(get_token()) |
|
tfound = "Where are my doritos?" |
|
else: |
|
|
|
login(input("API token not detected. Enter your HuggingFace (WRITE) token: ")) |
|
tfound = "false" |
|
|
|
|
|
while True: |
|
if whoami().get('auth', {}).get('accessToken', {}).get('role', None) != 'write': |
|
clear_screen() |
|
if os.environ.get('HF_TOKEN', None) is not None: |
|
print(''' |
|
You have the environment variable HF_TOKEN set. |
|
You cannot log in. |
|
Either set the environment variable to a 'WRITE' token or remove it. |
|
''') |
|
input("Press enter to continue.") |
|
sys.exit("Exiting...") |
|
if os.environ.get('COLAB_BACKEND_VERSION', None) is not None: |
|
print(''' |
|
Your Colab secret key is read-only |
|
Please switch your key to 'write' or disable notebook access on the left. |
|
''') |
|
sys.exit("Stuck in a loop, exiting...") |
|
elif os.environ.get('KAGGLE_KERNEL_RUN_TYPE', None) is not None: |
|
print(''' |
|
Your Kaggle secret key is read-only |
|
Please switch your key to 'write' or unattach from notebook in add-ons at the top. |
|
Having a read-only key attched will require login every time. |
|
''') |
|
print("You do not have write access to this repository. Please use a valid token with (WRITE) access.") |
|
login(input("Enter your HuggingFace (WRITE) token: ")) |
|
continue |
|
break |
|
|
|
clear_screen() |
|
if cord == 'delete': |
|
|
|
while True: |
|
yorn = input(f"Are you sure you want to remove branch '{branch}' in {repo}? (Y/n): ").lower() |
|
if yorn == '': |
|
yorn = 'y' |
|
elif yorn == 'yes': |
|
yorn = 'y' |
|
elif yorn == 'no': |
|
yorn = 'n' |
|
break |
|
else: |
|
if yorn not in ['y', 'n']: |
|
clear_screen() |
|
print("Please choose one of the following two options carefully.") |
|
continue |
|
break |
|
else: |
|
|
|
while True: |
|
yorn = input(f"Are you sure you want to clone revision '{rev}' to create branch '{branch}' in {repo}? (Y/n): ").lower() |
|
if yorn == '': |
|
yorn = 'y' |
|
elif yorn == 'yes': |
|
yorn = 'y' |
|
elif yorn == 'no': |
|
yorn = 'n' |
|
break |
|
else: |
|
if yorn not in ['y', 'n']: |
|
clear_screen() |
|
print("Please choose one of the following two options carefully.") |
|
continue |
|
break |
|
clear_screen() |
|
|
|
|
|
|
|
if yorn == 'y': |
|
if cord == 'create': |
|
create_branch(repo, revision=rev, repo_type=r_type, branch=branch) |
|
else: |
|
delete_branch(repo, repo_type=r_type, branch=branch) |
|
else: |
|
print("Cancelled action") |
|
sys.exit("Exiting...") |
|
clear_screen() |
|
|
|
|
|
|
|
if cord == 'create': |
|
if r_type == 'model': |
|
print(f"Branch {branch} created at https://huggingface.co/{repo}/tree/{branch}") |
|
elif r_type == 'dataset': |
|
print(f"Branch {branch} created at https://huggingface.co/datasets/{repo}/tree/{branch}") |
|
elif r_type == 'space': |
|
print(f"Branch {branch} created at https://huggingface.co/spaces/{repo}/tree/{branch}") |
|
else: |
|
if r_type == 'model': |
|
print(f"Branch {branch} deleted on {r_type} https://huggingface.co/{repo}") |
|
elif r_type == 'dataset': |
|
print(f"Branch {branch} deleted on {r_type} https://huggingface.co/datasets/{repo}") |
|
elif r_type == 'space': |
|
print(f"Branch {branch} deleted on {r_type} https://huggingface.co/spaces/{repo}") |
|
|
|
if tfound == 'false': |
|
print(f''' |
|
You are now logged in as {whoami().get('fullname', None)}. |
|
|
|
To logout, use the hf command line interface 'huggingface-cli logout' |
|
To view your active account, use 'huggingface-cli whoami' |
|
''') |
|
|
|
input("Press enter to continue.") |
|
|