✨ Add CSV to NDJSON conversion script and update README ✨ #440
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Added a Python script to convert CSV files to NDJSON format and included a detailed README explaining usage and NDJSON benefits.
Description
This PR introduces a simple, standalone Python script
csv_to_ndjson.py
that reads a CSV file from the script's folder and outputs an NDJSON file in the same location. The NDJSON format is widely used in data processing tools like Google Cloud BigQuery and Elasticsearch, making this script useful for data engineering workflows.Additionally, a README.md file has been provided to guide users on how to use the script and explain what NDJSON is.
The changes are as follows:
csv_to_ndjson.py
for CSV to NDJSON conversionREADME.md
with usage instructions and explanation of NDJSONREADME.md
with link to the folderChecks
in the repository
in the PR
Resolves #449
Thank You,
leftkats