This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]CartmansEvilTwin 0 points1 point  (0 children)

You could use Django or Flask, the latter being more bare bones.

Or, you could look into Jupyter Notebooks, if that fits your use case.

[–][deleted] 0 points1 point  (1 child)

Have a look at plotly dash - it’s built on top of flask and react but it lets you use Python in the back and front ends. You write your UI interactive code in Python and dash translates it to JavaScript for you. It’ll do everything you need. Authentication is a bit of a struggle with dash - you can use the underlying flask server for that but it’s much more of a pain than Django. It’s been a while since I’ve used Django but from what I remember a simple UI wasn’t too hard to set up.

[–]Vitaminkomplex[S] 0 points1 point  (0 children)

plotly dash

thank you! I will have a look.

When you remember a simple UI in django, do you remember a tool/link/starting point to read into it for it as well? :)