You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-5Lines changed: 27 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,12 @@
1
1
# excel-rs
2
2
3
-
A set of Rust and Python utilities to efficiently convert CSVs to Excel XLSX files.
3
+
An *extremely* fast set of Rust and Python utilities to efficiently convert CSVs to Excel XLSX files.
4
4
5
5
This library is available as a CLI tool and Python PIP package.
6
6
7
-
This library was created with the goal of being simple, lightweight, and *extremely* fast. As such, many features such as Excel formatting is not currently supported. This library gives you the quickest possible way to convert a `.csv` file to `.xlsx`.
7
+
This library was created with the goal of being simple, lightweight, and *extremely* performant. As such, many features such as Excel formatting is not currently supported. This library gives you the quickest possible way to convert a `.csv` file to `.xlsx`.
8
+
9
+
The Python utilities also gives you the quickest possible way to export a Pandas DataFrame, Numpy 2D array or Postgres database as a `.xlsx` file.
8
10
9
11
## Python
10
12
@@ -67,15 +69,22 @@ with open('report.xlsx', 'wb') as f:
67
69
```
68
70
69
71
## Command Line Tool
70
-
To install, download the latest release of `cli-excel-rs` for your platform from Release[here](https://github.com/carlvoller/excel-rs/releases?q=cli-excel-rs&expanded=true).
72
+
To install, download the latest release of `cli-excel-rs` for your platform from Github Releases[here](https://github.com/carlvoller/excel-rs/releases?q=cli-excel-rs&expanded=true).
0 commit comments