File size: 290 Bytes
fc41c7c 868af8c fc41c7c 61f9d85 | 1 2 3 4 5 6 7 8 9 10 | # Hugging Face CLI whoami
import subprocess
# This will show the output in the console as the command runs
subprocess.run("huggingface-cli whoami", shell=True, check=True)
result = subprocess.run("huggingface-cli whoami", shell=True, capture_output=True, text=True)
print(result.stdout)
|