We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation for CsvReader it says we can pass the header parameter. The example shows a possible value of None.
Example: "csv_reader": { "class": "CsvReader", "filename": "data/mydata.csv", "kwargs": { "header": None, "sep": ":" } } \
Json(and yaml) have issues with None. If you pass Null instead of None the reader works.
https://github.com/WW-Digital/ww-primrose/blob/b8b0eb9befc78d42c48cd0573a1dc6d1dfaef71d/primrose/readers/csv_reader.py#L42
As an aside, I was trying to write this data to BigQuery and if there is no header the Bqwriter fails.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the documentation for CsvReader it says we can pass the header parameter. The example shows a possible value of None.
Example:
"csv_reader": {
"class": "CsvReader",
"filename": "data/mydata.csv",
"kwargs": {
"header": None,
"sep": ":"
}
} \
Json(and yaml) have issues with None.
If you pass Null instead of None the reader works.
https://github.com/WW-Digital/ww-primrose/blob/b8b0eb9befc78d42c48cd0573a1dc6d1dfaef71d/primrose/readers/csv_reader.py#L42
As an aside, I was trying to write this data to BigQuery and if there is no header the Bqwriter fails.
The text was updated successfully, but these errors were encountered: