aiqtest1 / app.py
seawolf2357's picture
Update app.py
f7f4bea verified
raw
history blame
1.09 kB
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()