-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any packages similar to DT for python shiny? #1164
Comments
datatable.net is a frontend and there was a lot of work to adapt it and create its backend ( When I first installed DT in early 2018, for me it was a simple adaptation of datatable.net, used many times in my R Shiny apps, but in 2022 when I implemented datatable.net with Flask Rest and VueJs 3, I rewrote a lot of things in python Flask server side (pagination, order, filter, etc ) which I thought were in datatable.net but actually written in the server side of DT R Shiny. In 2022 a datatable server side in python didn't exist: only some of partial POCs and articles, that helped me, exist. I don't kown if datatable.net server side in python exists in the early 2025. When you look at Python for Shiny:
PS: I'm a simple user |
Yes, it was a huge amount of work. If you don't need the server-side processing, perhaps simple-datatables would be better to experiment with than DataTables: https://github.com/fiduswriter/simple-datatables/ DataTables is powerful but also extremely complicated. |
Thanks! I don't need server-side processing so I'll give simple-datatables a shot! |
I love using the DT package, specifically with its filter tools, in my R shiny apps. Is there anything similar in python? If not, I'm thinking of trying to a python package similar to DT that utilizes the datatables library.
The text was updated successfully, but these errors were encountered: