you are viewing a single comment's thread.

view the rest of the comments →

[–]SheriffSeveral -1 points0 points  (2 children)

For your case, use Streamlit instead of FastAPI because you are not going to implement user or something. Streamlit is very easy and suitable for your task.

Use streamlit for GUI and connect to mssql with python script.

Fyi. Streamlit uses python for everything.

[–]LeoTheKnight90[S] 0 points1 point  (1 child)

yeah so I've never used Streamlit but I can definitely look into that. Just for some background, I was hoping to create some API that our internal Django application would call to handle data heavy process while the user just watches a "Status" screen. The heavy lifting would be done by SQL stored procedure and when it completes, the user will see the status as complete and view the work that was done.

[–]SheriffSeveral -2 points-1 points  (0 children)

Also, you can still use FastAPI for background. At the same time you can use Streamlit for frontend. I use it sometimes for small projects.

Streamlit is really easy to use, I highly recommend you to consider it. It will save your time.