You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am I missing something here? I think it should be a way to automatically select which stream ("Sheet 1", "file_metadata", etc) you want to get data from.
The text was updated successfully, but these errors were encountered:
Running
Gives the
catalog.json
file, as expected (with schema, stream name, metadata, etc).But now, I want to actually get data from one sheet (say, "Sheet 1"). How am I supposed to do that? Because running:
gives me nothing.
So I tried to understand what was happening, and found this: https://github.com/singer-io/singer-python/blob/6c6c773d8b6dc6223551e598574eb0df41f0c415/singer/catalog.py#L47, which basically verifies if a stream is selected. But it turns out this is not automatically generated in the catalog file; so I needed to go to the specific stream ("Sheet 1") and add
"selected": true
inside theschema
property.Am I missing something here? I think it should be a way to automatically select which stream ("Sheet 1", "file_metadata", etc) you want to get data from.
The text was updated successfully, but these errors were encountered: