Skip to content
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

Open
DRosenman opened this issue Jan 21, 2025 · 3 comments
Open

Any packages similar to DT for python shiny? #1164

DRosenman opened this issue Jan 21, 2025 · 3 comments

Comments

@DRosenman
Copy link

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.

@philibe
Copy link

philibe commented Jan 22, 2025

datatable.net is a frontend and there was a lot of work to adapt it and create its backend (server= TRUE) in DT R package by @yihui .

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

@yihui
Copy link
Member

yihui commented Jan 22, 2025

datatable.net is a frontend and there was a lot of work to adapt it and create its backend (server= TRUE) in DT R package

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.

@DRosenman
Copy link
Author

datatable.net is a frontend and there was a lot of work to adapt it and create its backend (server= TRUE) in DT R package

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants