Reputation: 11
How to read the first line and store header data in Apache Beam Python?
Upvotes: 1
Views: 1035
Reputation: 1383
Check out this example. See how the UsCovidDataCsvReader parses the input.
UsCovidDataCsvReader
The basic ideas are
skip_header_lines=1
Upvotes: 2