KazSandra / app.py
lgblkb's picture
Authenticate
6d9ae67
raw
history blame
286 Bytes
import os
from pathlib import Path
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
from huggingface_hub import login
login(os.getenv('HF_TOKEN'))
hub_folder = Path('~/.cache/huggingface/hub')
for path in hub_folder.walk():
st.write(path)