I tried the first example in the readme:
>>> from xlwings import Workbook, Sheet, Range, Chart
>>> wb = Workbook() # Creates a connection with a new workbook
>>> Range('A1').value = 'Foo 1'
It fails with error code
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/xlwings/main.py", line 430, in value
if hasattr(np, 'ndarray') and np.isnan(data):
NotImplementedError: Not implemented for this type
It works if I make it an array:
>>> Range('A1').value = [['Foo 1']]
I tried the first example in the readme:
It fails with error code
It works if I make it an array: