awacke1 commited on
Commit
14c0c96
Β·
verified Β·
1 Parent(s): bc3d59f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +49 -0
app.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Markdown content with outline, emojis, links, and start-fast indicators
4
+ markdown_content = """
5
+ # M365-Compatible Flow & Kanban Options πŸš€
6
+
7
+ ---
8
+
9
+ ### Microsoft Options
10
+ - **πŸ“‹ Microsoft Planner (Kanban)**
11
+ - [Test It](https://tasks.office.com/) (Log in with M365)
12
+ - **Start Fast?** βœ… Yes – Free with M365, add as a Teams tab, drag-and-drop in minutes.
13
+ - **⚑ Microsoft Power Automate (Flow)**
14
+ - [Test It](https://make.powerautomate.com/) (M365 login)
15
+ - **Start Fast?** ⚠️ Kinda – Templates are quick, but custom flows need some learning.
16
+ - **πŸ—‚οΈ Microsoft Lists (Kanban + Light Flow)**
17
+ - [Test It](https://lists.live.com/) (M365 SharePoint)
18
+ - **Start Fast?** βœ… Yes – Simple board view, M365-native, tweakable out of the box.
19
+ - **πŸš€ Azure Boards (Advanced Kanban)**
20
+ - [Test It](https://azure.microsoft.com/en-us/services/devops/boards/) (Free tier signup)
21
+ - **Start Fast?** ❌ No – Needs Azure setup, better for tech-savvy teams.
22
+
23
+ ---
24
+
25
+ ### Non-Microsoft (M365-Compatible)
26
+ - **🎴 Trello (Kanban)**
27
+ - [Test It](https://trello.com/) (Free signup)
28
+ - **Start Fast?** βœ… Yes – Free tier, intuitive, Teams integration in a snap.
29
+ - **🌟 Asana (Kanban + Flow)**
30
+ - [Test It](https://asana.com/) (Free signup)
31
+ - **Start Fast?** βœ… Yes – Free plan, quick Kanban setup, basic automation included.
32
+ - **🎨 Monday.com (Kanban + Flow)**
33
+ - [Test It](https://monday.com/) (Free trial)
34
+ - **Start Fast?** ⚠️ Kinda – Trial is slick, but full setup takes tweaking.
35
+ - **πŸ› οΈ Virto Kanban Board (Kanban for SharePoint)**
36
+ - [Test It](https://www.virtosoftware.com/sharepoint/kanban-board/) (Trial request)
37
+ - **Start Fast?** ⚠️ Kinda – SharePoint-based, fast if you know M365, trial needs a request.
38
+
39
+ ---
40
+
41
+ ### Quick Pick
42
+ - **Fastest Start**: πŸ“‹ **Planner** or 🎴 **Trello** – Zero learning curve, M365-ready.
43
+ - **Flow + Kanban**: ⚑ **Power Automate** + πŸ“‹ **Planner** (M365) or 🌟 **Asana** (standalone).
44
+ """
45
+
46
+ # Streamlit app setup
47
+ st.title("M365 Flow & Kanban Options Explorer")
48
+ st.markdown(markdown_content, unsafe_allow_html=True) # Render Markdown with links
49
+ st.write("Click the 'Test It' links to try each tool!")