Spaces:
Sleeping
Sleeping
import gradio as gr | |
import requests | |
def get_lunar_info(year, month, day, time): | |
# API URL μ€μ | |
url = "https://api.example.com/get_lunar_info" | |
# APIμ μ λ¬ν λ°μ΄ν° μ€μ | |
data = { | |
"year": year, | |
"month": month, | |
"day": day, | |
"time": time | |
} | |
# API νΈμΆ | |
response = requests.post(url, json=data) | |
# API μλ΅ νμΈ λ° κ²°κ³Ό λ°ν | |
if response.status_code == 200: | |
return response.json() | |
else: | |
return "API νΈμΆμ μ€ν¨νμ΅λλ€." | |
# Gradio μΈν°νμ΄μ€ κ΅¬μ± | |
with gr.Blocks() as demo: | |
gr.Markdown("### μλ μμΌ λ° μμ μ 보 μ λ ₯") | |
year = gr.Textbox(label="μλ (μ: 1990)") | |
month = gr.Textbox(label="μμ(μ: 01)") | |
day = gr.Textbox(label="μμΌ(μ: 31)") | |
time = gr.Textbox(label="μμ(μμ: 1030)") | |
submit_button = gr.Button("μ 보 μ μΆ") | |
result = gr.Textbox(label="κ²°κ³Ό") | |
submit_button.click(fn=get_lunar_info, inputs=[year, month, day, time], outputs=result) | |
# Gradio μ± μ€ν | |
demo.launch() |