-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Description
I'm having issues getting py.grid_ops.upload to work with strings, it seems to only work with numbers.
This works for me:
grid = Grid([
Column([1,2,3], 'one'),
Column([4,5,6], 'two'),
Column([7,8,9], 'three')
])
url = py.grid_ops.upload(grid, filename='test-201706140822', world_readable=False, auto_open=True)
## Run the above first, then run this
py.grid_ops.append_rows([[1,2,3]], grid = grid)
But when I try the exact same thing with Strings, it doesn't work for me:
grid = Grid([
Column(['a','b','c'], 'one'),
Column(['d','e','f'], 'two'),
Column(['one', 'two', 'three'], 'three')
])
url = py.grid_ops.upload(grid, filename='test-201706140820', world_readable=False, auto_open=True)
## Run the above first, then run this
py.grid_ops.append_rows([['g','h','four']], grid = grid)
I'm using python 3.5.2 and plotly 2.0.10
Metadata
Metadata
Assignees
Labels
No labels