Tag: csv
Browse 10 practical software engineering resources tagged with "csv". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving csv. Each resource is written for engineers who ship real systems, with copy-paste examples and practical trade-offs.
CSV and Tabular Data
CSV is the universal format for tabular data exchange. Despite its simplicity, it is full of edge cases around quoting, delimiters, encoding, headers, and malformed rows.
The resources below cover parsing, writing, validating, transforming, and importing CSV data. Each recipe shows how to work with CSV reliably across languages and tools.
Every resource includes clear explanations, copy-paste code, and practical warnings. Use them to make informed decisions, avoid production pitfalls, and speed up your delivery. If you are just getting started, read the beginner-friendly articles first; if you are experienced, jump straight to the advanced patterns and architecture guides. New resources are added regularly, so bookmark this page and check back for the latest patterns.
Convert CSV to JSON
Turn CSV files into structured JSON using Python, JavaScript, and Java. Pick the right library for...
Date Formatting
How to parse, format, and manipulate dates across timezones using Python, JavaScript, and Java.
Flatten and Unflatten Nested Objects
How to convert nested objects to flat key-value pairs and back again, with dot-notation, bracket...
Money and Currency Handling
How to represent, parse, format, and calculate monetary values accurately across currencies.
Parse CSV Files
How to parse CSV files in Python, Java, and JavaScript with practical code examples.
Parse CSV Files with Python and Pandas
How to read, filter, and transform large CSV files efficiently using Python pandas and the csv...
Sort an Array
How to sort arrays and lists in ascending, descending, and custom order across multiple languages.
Export Data to CSV and Excel Files
How to export structured data to CSV and Excel files efficiently.