-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflatdrop.py
More file actions
32 lines (23 loc) · 903 Bytes
/
flatdrop.py
File metadata and controls
32 lines (23 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
flatdrop.py – Daily AA/Recovery Topic + Reflections Blurb Generator
Version: 0.1.0
Build: 1
"""
import datetime
def get_today():
return datetime.date.today()
def get_daily_reflections_link():
today = get_today()
return "https://www.aa.org/daily-reflections"
def generate_topic_blurb():
topic = "Step 8 – Willingness to Make Amends"
focus = "What’s the difference between willingness and readiness? What if I’m still angry?"
daily_link = get_daily_reflections_link()
return f"""📅 Today's Topic: {topic}
🧠 Focus: {focus}
📖 Daily Reflections: {daily_link}
🙏 7th Tradition reminder: We are self-supporting through our own contributions.
🚨 Safety Statement: This meeting supports a respectful and inclusive environment.
(Please refrain from crosstalk and mute when not speaking.)"""
if __name__ == "__main__":
print(generate_topic_blurb())