slingdata-io / sling-cli

Sling is a CLI tool that extracts data from a source storage/database and loads it in a target storage/database.
https://docs.slingdata.io
GNU General Public License v3.0
444 stars 34 forks source link

Skip rows when ingesting files #393

Open kristianandre opened 1 month ago

kristianandre commented 1 month ago

Feature Description

We have some files that have headers in the second row instead of the first, which just contains some codes. This results in the loaded table having the codes as column names and the actual column names as the first row in the table.

It would be nice to have something similar to the skiprows parameter in pandas.read_csv() to avoid this issue.