query-forge 0.5.0

Run SQL queries on XLSX/XML/CSV/JSON/JSONL/Markdown/HTML/Parquet inputs and export results as text, CSV, JSONL, Markdown, XML, HTML, XLSX, or Parquet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod csv;
mod html;
mod json;
mod jsonl;
mod markdown;
mod text;
mod utils;
mod xml;

pub use csv::render_csv;
pub use html::render_html;
pub use json::render_json;
pub use jsonl::render_jsonl;
pub use markdown::render_markdown;
pub use text::render_text;
pub use xml::render_xml;