Update app.py
Browse files
app.py
CHANGED
@@ -12,6 +12,42 @@ from reportlab.pdfbase.ttfonts import TTFont
|
|
12 |
from reportlab.lib import colors
|
13 |
|
14 |
# --- Configuration & Setup ---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
# Define layouts using reportlab's pagesizes
|
17 |
LAYOUTS = {
|
|
|
12 |
from reportlab.lib import colors
|
13 |
|
14 |
# --- Configuration & Setup ---
|
15 |
+
# Guidance on emojis : https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2805970
|
16 |
+
# Interpreting Emoji: A Medical Tune! πΆ
|
17 |
+
emojistory='''
|
18 |
+
* **A Study We Must Cite, Shining a Guiding Light** π‘
|
19 |
+
* In texts that docs send, to colleague and friend π¨ββοΈ
|
20 |
+
* They add feelings, you see, with such simple glee! π₯°
|
21 |
+
* To start or to end, a message to send! π
|
22 |
+
* **A Language of Care, Beyond Just a Stare** π
|
23 |
+
* From Words to a Sign, A Method so Fine βοΈ
|
24 |
+
* A sad face, a knife, might just save a life πͺ
|
25 |
+
* Three hearts beat as one, a new code's begun π«
|
26 |
+
* The Thumbs-Up We See, Means More Than "OK" to Me π
|
27 |
+
* "I approve," it can say, "let's get on our way!" β
|
28 |
+
* A symbol so new, for the legal crew! βοΈ
|
29 |
+
* For Those Who Can't Speak, A Future We Seek π€«
|
30 |
+
* With a point and a tap, they'll close the gap π
|
31 |
+
* **The Future is Bright, with Symbols of Light** β¨
|
32 |
+
* From Paper to Screen, A New Painful Scene π₯οΈ
|
33 |
+
* The Wong-Baker scale, tells its digital tale π
|
34 |
+
* From sad face to cry, the pain doesn't lie π
|
35 |
+
* We Need More Anatomy, for You and for Me! π§
|
36 |
+
* A heart and a lung, a new song is sung π«
|
37 |
+
* But where is the gut, or the kidney, but... π€·
|
38 |
+
* Societies must agree, on a new emoji! π€
|
39 |
+
* Let a Smart Brain Decide, with Naught Left to Hide π§
|
40 |
+
* With lightning and thought, a lesson is taught β‘
|
41 |
+
* Machine learning is key, for the patient and thee π
|
42 |
+
* **So Let's All Embrace, This New Smiley Face** π
|
43 |
+
* A Universal Tongue, For Old and for Young π
|
44 |
+
* To help doctors connect, and earn our respect π
|
45 |
+
* So patients can share, their every last care β€οΈ
|
46 |
+
* A Picture's a Word, That Must Now Be Heard π£οΈ
|
47 |
+
* Improving the art, of healing the heart π
|
48 |
+
* The future is clear, let's all give a cheer! π
|
49 |
+
'''
|
50 |
+
st.markdown(emojistory)
|
51 |
|
52 |
# Define layouts using reportlab's pagesizes
|
53 |
LAYOUTS = {
|