gradio-oauth / app2.py
Wauplin's picture
Wauplin HF staff
changes
1248eba
raw
history blame
No virus
1.01 kB
from __future__ import annotations
import gradio as gr
import gradio.utils
if gradio.utils.get_space() is not None:
URL, PORT = "https://wauplin-gradio-oauth-test.hf.space", 7860
else:
URL, PORT = "http://localhost:5173", 5173
TEMPLATE = """
### Name: {name}
### Username: {preferred_username}
### Profile: {profile}
### Website: {website}
![Profile Picture]({picture})
You can manage your connected applications in your [settings](https://huggingface.co/settings/connected-applications).
"""
def show_profile(profile: gr.OAuthProfile) -> str:
# request.session in case of websockets (see `def get_request_params`)
# request.request.session in case of direct call
return TEMPLATE.format(**profile)
with gr.Blocks() as demo:
with gr.Row():
gr.LoginButton()
gr.LogoutButton()
profile_btn = gr.Button("Show profile")
output = gr.Markdown()
profile_btn.click(fn=show_profile, outputs=output)
print(URL)
demo.queue()
demo.launch(server_port=PORT)