ipysheet
ipysheet copied to clipboard
Cell does not seem to have a "__repr__" method
as opposed to Sheet.
So in order to see a cell in the notebook you must do either something like sheet[5:6]
for print(cell)
.
It would be convenient to just be able to write cell
.
We could make a cell have a view, which would be a div with it's value shown.
I was more thinking of displaying all its characteristics as a dict.
Indeed an isolated cell is not that interested for the user. On the contrary its detailed characteristics are useful in debug times.
But maybe both the rendered cell and its characteristics should be easily accessible.
Not sure. We should discuss it.
Yes, actually, this works:
cell.__repr__()
Not sure why it is not being called (will check it).
Opened https://github.com/jupyter-widgets/ipywidgets/pull/2338