jakubbartel / keboola-xls2csv-processor

Keboola Component for converting xls/xlsx files to csv files.
MIT License
0 stars 1 forks source link

Documentation #10

Open davidesner opened 4 years ago

davidesner commented 4 years ago

Hi, it is not clear that the processor takes files from data/in/files/ and creates converted result in data/out/files. Most of the users will want to convert to CSV because they want to load to Storage data/out/tables.

It should implicitly move result to data/out/tables or the documentation should explicitly say that it behaves this way and that the most common usecase would be with move-files processor like:


      "definition": {
        "component": "jakub-bartel.processor-xls2csv"
      },
      "parameters": {
        "sheet_index": 0
      }
    },
    {
      "definition": {
        "component": "keboola.processor-move-files"
      },
      "parameters": {
        "direction": "tables",
        "addCsvSuffix": false
      }
    }```