#csv #table #string #primitive #pretty-print #meant #learn

very_primitive_tables

Primitive pretty-printing functionality for tables. This is mainly meant as a way for me to learn how to publish code. There are surely other options.

4 releases

0.1.3 Sep 29, 2023
0.1.2 Sep 29, 2023
0.1.1 Sep 29, 2023
0.1.0 Sep 29, 2023

#122 in Value formatting

Download history 3/week @ 2024-02-22 2/week @ 2024-02-29 11/week @ 2024-03-28 5/week @ 2024-04-04 3/week @ 2024-04-11 49/week @ 2024-04-18

68 downloads per month

MIT/Apache

9KB
158 lines

very_primitive_tables

This library is basically for pretty-printing two dimensional vectors of strings. I created it because I had nothing to do, so issues probably won't be fixed.

It also has some basic csv loading ability. It does nothing else. It has no dependencies. It is slightly annoying to use.

Example code

main.rs:

use very_primitive_tables::vec2d::csv_to_vec2d_ref;
use very_primitive_tables::Table;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let table = csv_to_vec2d_ref(include_str!("../test.csv"));
    let table = Table::from_vec2d(&table)?;
    print!("table =\n{}", table.render());
    Ok(())
}

test.csv:

x,y,x_error
0.06,0.60,0.0024
0.11,1.20,0.0033
0.17,1.80,0.0083
0.23,2.40,0.0048
0.31,3.00,0.0056
0.38,3.60,0.0124

produces:

+------+------+---------+
| x    | y    | x_error |
+------+------+---------+
| 0.06 | 0.60 | 0.0024  |
+------+------+---------+
| 0.11 | 1.20 | 0.0033  |
+------+------+---------+
| 0.17 | 1.80 | 0.0083  |
+------+------+---------+
| 0.23 | 2.40 | 0.0048  |
+------+------+---------+
| 0.31 | 3.00 | 0.0056  |
+------+------+---------+
| 0.38 | 3.60 | 0.0124  |
+------+------+---------+

No runtime deps