https://github.com/jacobsvante/csv2xlsx
https://github.com/jacobsvante/csv2xlsx
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jacobsvante/csv2xlsx
- Owner: jacobsvante
- License: mit
- Created: 2022-05-23T09:57:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-12T10:15:08.000Z (almost 4 years ago)
- Last Synced: 2025-03-19T03:06:08.646Z (about 1 year ago)
- Language: Rust
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# csv2xlsx
Convert CSV files to Excel (in XLSX format). Written in Rust for performance and safety.
Its main intended usage is through the provided CLI, but programmatic access should also work (which outputs in-memory Excel-data).
## CLI usage
### Simple convert with explicit filenames provided
```
csv2xlsx -i ~/example.csv -o ~/example.xlsx
```
### With column widths adjusted to their contents
```
cat ~/example.csv | csv2xlsx --width-adjustment > ~/example.xlsx
```
### CLI help for more info
```
csv2xlsx --help
```