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

Add ipysheet support (Jupyter widget for tabular data) #2594

Open
giswqs opened this issue Feb 3, 2022 · 1 comment
Open

Add ipysheet support (Jupyter widget for tabular data) #2594

giswqs opened this issue Feb 3, 2022 · 1 comment

Comments

@giswqs
Copy link

giswqs commented Feb 3, 2022

Add support for ipysheet within Colab.

@blois @martinRenou @SylvainCorlay @maartenbreddels

Is your feature request related to a problem? Please describe.
When working with tabular data, there is often a need to change the cell values interactively and save the results as a Pandas DataFrame or a file. ipysheet is well suited for this. I tried the follow code on install ipysheet in Colab. The spreadsheet does not show up.

from google.colab import output
output.enable_custom_widget_manager()

import ipysheet
sheet = ipysheet.sheet()
sheet

Describe the solution you'd like
Provide a way to install and use the third-party jupyter widget ipysheet. A good test case would be the ability to run the following example and display the spreadsheet in Colab. More examples can be found here.

import ipysheet
sheet = ipysheet.sheet(rows=3, columns=4)
cell1 = ipysheet.cell(0, 0, 'Hello')
cell2 = ipysheet.cell(2, 0, 'World')
cell_value = ipysheet.cell(2,2, 42.)
sheet

image

Describe alternatives you've considered
N/A

Additional context

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

No branches or pull requests

3 participants