Update app.py adding buy-me-a-coffee badge
Browse files
app.py
CHANGED
@@ -142,6 +142,14 @@ def main():
|
|
142 |
elif app_mode == programatically_control_page:
|
143 |
app_programatically_play()
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
logger.debug("=== Alive threads ===")
|
146 |
for thread in threading.enumerate():
|
147 |
if thread.is_alive():
|
|
|
142 |
elif app_mode == programatically_control_page:
|
143 |
app_programatically_play()
|
144 |
|
145 |
+
st.sidebar.markdown(
|
146 |
+
"""
|
147 |
+
---
|
148 |
+
<a href="https://www.buymeacoffee.com/whitphx" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" width="180" height="50" ></a>
|
149 |
+
""", # noqa: E501
|
150 |
+
unsafe_allow_html=True,
|
151 |
+
)
|
152 |
+
|
153 |
logger.debug("=== Alive threads ===")
|
154 |
for thread in threading.enumerate():
|
155 |
if thread.is_alive():
|