Search code examples
pythonpyexcel

Reading .fods file throwing NotImplementedError


I want to open, read and modify a .fods file using pyexcel_ods:

from pyexcel_ods import get_data

codebook_fods = get_data("myfile.fods")

But I'm getting just a NotImplementedError here.

Is there a way to do this in Python?


Solution

  • There is no documentation regarding this package saying it support the .fods file extention. It is probably, as the error means, not implemented yet.

    You can read more about it here.

    As of what I know, there is no python implementation as of yet for the file extension you are trying to open.