File size: 6,297 Bytes
93bff19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92be478
e06da02
92be478
 
 
f6ac29b
92be478
 
 
 
 
051c019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c7715ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import streamlit as st
import os
from PIL import Image

# Placeholder function for Wikipedia content fetching
# You'll need to replace this with actual fetching logic
def fetch_wikipedia_summary(keyword):
    # Placeholder text, replace with actual Wikipedia fetching logic
    return f"Summary about {keyword} from Wikipedia."

# Display images from the current directory and fetch related Wikipedia stories
def display_images_and_wikipedia_summaries():
    st.title('Gallery with Related Stories')

    # Scan current directory for PNG images
    image_files = [f for f in os.listdir('.') if f.endswith('.png')]

    # Check if there are any PNG images
    if not image_files:
        st.write("No PNG images found in the current directory.")
        return

    # Iterate over found images
    for image_file in image_files:
        # Open and display each image
        image = Image.open(image_file)
        st.image(image, caption=image_file, use_column_width='always')
        
        # Extract a keyword from the image file name for Wikipedia search
        # This is a simple example; adjust logic as needed for more complex titles
        keyword = image_file.split('.')[0]  # Assumes keyword is the file name without extension
        
        # Fetch and display related Wikipedia content
        wikipedia_summary = fetch_wikipedia_summary(keyword)
        st.write(wikipedia_summary)

# Call the function to display images and summaries
display_images_and_wikipedia_summaries()



import streamlit as st
st.markdown('# Three Dragons ๐Ÿ‰๐ŸŒ Mythical Dragons Around the World by Aaron Wacker')

dragons = {
    '#Fafnir #Norse': '- **Story**: Fafnir originally a dwarf, transformed into a fierce dragon due to his greed for the treasure he guarded. He was later slain by the hero Sigurd. - **Significance**: deadly sin of greed and the corrupting power of wealth.',
    '#Quetzalcoatl #Aztec': '- **Story**: Quetzalcoatl, the Feathered Serpent, is not a dragon in the traditional sense but shares many similarities. He was a deity representing wind, air, and learning. - **Significance**: creator god and a symbol of death and rebirth.',
    '#Tiamat #Mesopotamian': '- **Story**: Tiamat, primordial goddess of ocean, turned into a dragon-like creature in a battle against her children who threatened her authority. - **Significance**: chaos of primordial creation and is often associated with the forces of nature.'
}

for dragon, story in dragons.items():
    st.subheader(dragon)
    st.markdown(f"- {story}")


st.markdown('''


![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/vkNh6XnEtGSj8mXea1W6p.png)


![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/Kr_nqtaglHE_aiFxWH9zF.png)


![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/WLRKWqB6dKlMH6saVV9cX.png)


![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/Lyazf6FuX4nH__4illVki.png)


![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/ZemsxlT3b5idB0W5IjL1o.png)

''')



st.markdown('''

# Remixable!!



''')

st.markdown('''# Emoji Classifications''')

st.markdown('''## Inputs''')
st.button("๐Ÿ“ Text")
st.button("๐Ÿ“– Read")
st.button("๐Ÿ“ท Photo")
st.button("๐Ÿ–ผ๏ธ View")
st.button("๐ŸŽ™๏ธ Record")
st.button("๐ŸŽง Listen")
st.button("๐ŸŽฅ Video")
st.button("๐Ÿ“น Capture")

st.markdown('''## Outputs''')
st.button("๐Ÿ’ฌ Chat")
st.button("โœ๏ธ Write")
st.button("๐ŸŽจ Art")
st.button("๐ŸŒ„ Create")
st.button("๐ŸŽต Music")
st.button("๐ŸŽถ Compose")
st.button("๐Ÿ“ผ Watch")
st.button("๐Ÿฟ Movies")

st.markdown('''## Health''')
st.button("๐Ÿ’‰ Vaccinate")
st.button("๐Ÿฉบ Diagnose")
st.button("๐Ÿฅ Hospital")
st.button("๐Ÿš‘ Emergency")
st.button("๐Ÿ’Š Meds")
st.button("๐Ÿฉน Bandage")
st.button("๐Ÿงฌ DNA")
st.button("๐Ÿ”ฌ Research")
st.button("๐ŸŒก๏ธ Temperature")
st.button("๐Ÿ Nutrition")

st.markdown('''## Learning''')
st.button("๐Ÿ“š Study")
st.button("๐Ÿง  Brain")
st.button("๐Ÿ‘ฉโ€๐ŸŽ“ Graduate")
st.button("๐Ÿ“ Measure")
st.button("๐Ÿ” Search")
st.button("๐Ÿ“Š Analyze")
st.button("๐Ÿ“‹ Plan")
st.button("๐Ÿ–‹๏ธ Write")
st.button("๐Ÿ‘จโ€๐Ÿซ Teach")
st.button("๐Ÿงฉ Puzzle")

st.markdown('''## AI''')
st.button("๐Ÿค– Robot")
st.button("๐Ÿ‘พ Game")
st.button("๐Ÿ’ป Code")
st.button("๐Ÿงฎ Calculate")
st.button("๐Ÿ“ก Connect")
st.button("๐Ÿ”‹ Power")
st.button("๐Ÿ•น๏ธ Play")
st.button("๐Ÿ–ฅ๏ธ Display")
st.button("๐Ÿง‘โ€๐Ÿ’ป Develop")
st.button("๐Ÿ‘จโ€๐Ÿ”ฌ Experiment")

st.markdown('''## Writing''')
st.button("โœ๏ธ Author")
st.button("๐Ÿ“ Note")
st.button("๐Ÿ–Š๏ธ Pen")
st.button("๐Ÿ–‹๏ธ Sign")
st.button("๐Ÿ“– Read")
st.button("๐Ÿ“š Library")
st.button("๐Ÿ”– Bookmark")
st.button("๐Ÿ““ Journal")
st.button("โœ’๏ธ Ink")
st.button("๐Ÿ“œ Scroll")

st.markdown('''## Coding''')
st.button("๐Ÿ’ป Program")
st.button("๐Ÿ–ฅ๏ธ Monitor")
st.button("๐Ÿ”ง Tools")
st.button("๐Ÿ“Š Data")
st.button("๐Ÿ“ˆ Graph")
st.button("๐Ÿ‘จโ€๐Ÿ’ป Develop")
st.button("๐Ÿง‘โ€๐Ÿ’ป Engineer")
st.button("โŒจ๏ธ Keyboard")
st.button("๐Ÿ–ฑ๏ธ Mouse")
st.button("๐Ÿ‘ฉโ€๐Ÿ’ป Code")

st.markdown('''## Remix''')
st.button("๐ŸŽ›๏ธ Mix")
st.button("๐ŸŽš๏ธ Level")
st.button("๐ŸŽง DJ")
st.button("๐Ÿ”Š Sound")
st.button("๐Ÿ“€ CD")
st.button("๐Ÿ’ฟ Disc")
st.button("๐ŸŽถ Lyrics")
st.button("๐ŸŽต Tune")
st.button("๐Ÿ“ป Radio")
st.button("๐ŸŽค Sing")

st.markdown('''## Movies''')
st.button("๐ŸŽฌ Direct")
st.button("๐Ÿฟ Popcorn")
st.button("๐ŸŽฅ Film")
st.button("๐Ÿ“ฝ๏ธ Project")
st.button("๐ŸŽž๏ธ Edit")
st.button("๐Ÿ“บ TV")
st.button("๐Ÿ“ผ Series")
st.button("๐Ÿ”Š Volume")
st.button("๐Ÿ–ฅ๏ธ Screen")
st.button("๐Ÿ’ป Stream")

st.markdown('''## Video''')
st.button("๐ŸŽฅ Record")
st.button("๐Ÿ“น Cam")
st.button("๐Ÿ“ผ Replay")
st.button("๐Ÿ“บ Watch")
st.button("๐ŸŽฌ Produce")
st.button("๐Ÿ–ฅ๏ธ Display")
st.button("๐Ÿ’ป Edit")
st.button("๐ŸŽž๏ธ Cut")
st.button("๐Ÿ“ฝ๏ธ Project")
st.button("๐Ÿ”Š Audio")

st.markdown('''## Audio''')
st.button("๐ŸŽต Listen")
st.button("๐ŸŽถ Melody")
st.button("๐ŸŽง Earphones")
st.button("๐Ÿ“ป Broadcast")
st.button("๐ŸŽค Sing")
st.button("๐Ÿ”Š Loud")
st.button("๐ŸŽ™๏ธ Record")
st.button("๐ŸŽš๏ธ Adjust")
st.button("๐ŸŽ›๏ธ Mix")
st.button("๐Ÿ’ฟ CD")