Update src/streamlit_app.py
Browse files- src/streamlit_app.py +4 -4
src/streamlit_app.py
CHANGED
|
@@ -8,10 +8,10 @@ def get_current_datetime():
|
|
| 8 |
tz = pytz.timezone('Asia/Seoul')
|
| 9 |
now = datetime.now(tz)
|
| 10 |
return f"""Current Information:
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
|
| 16 |
# ============================================
|
| 17 |
# LIGHTWEIGHT MEMORY SYSTEM
|
|
|
|
| 8 |
tz = pytz.timezone('Asia/Seoul')
|
| 9 |
now = datetime.now(tz)
|
| 10 |
return f"""Current Information:
|
| 11 |
+
- Date: {now.strftime('%B %d, %Y')}
|
| 12 |
+
- Time: {now.strftime('%I:%M %p')}
|
| 13 |
+
- Day: {now.strftime('%A')}
|
| 14 |
+
- Timezone: Asia/Seoul"""
|
| 15 |
|
| 16 |
# ============================================
|
| 17 |
# LIGHTWEIGHT MEMORY SYSTEM
|