#usv #import #export #import-export #data #asv

bin+lib usv-to-asv

USV to ASV: Convert Unicode Separated Values (USV) to ASCII Separated Values (ASV) such as for data markup, including for spreadsheets, databases, text files, and more

9 stable releases

1.5.2 Apr 11, 2024
1.5.1 Apr 10, 2024
1.3.2 Mar 26, 2024

#1532 in Encoding

Download history 205/week @ 2024-03-16 204/week @ 2024-03-23 495/week @ 2024-03-30 173/week @ 2024-04-06

1,077 downloads per month

MIT OR Apache-2.0 OR GPL-2.0 OR GPL-3.0

13KB
95 lines

usv-to-asv

Convert Unicode Separated Values (USV) to ASCII Separated Values (ASV). Built with the USV Rust crate.

Syntax:

stdin | usv-to-asv | stdout

Example:

cat example.usv | usv-to-asv

Example with output to a file:

cat example.usv | usv-to-asv > example.asv

Options

  • -h, --help : Print help

  • -V, --version : Print version

  • -v, --verbose... : Set the verbosity level: 0=none, 1=error, 2=warn, 3=info, 4=debug, 5=trace. Example: --verbose …

  • --test : Print test output for debugging, verifying, tracing, and the like. Example: --test

Install

Install:

cargo install usv-to-asv

Link: https://crates.io/crates/usv-to-asv

Example

Suppose example.usv contains:

a␟b␟␞
c␟d␟␞

Run:

cat example.usv | usv-to-asv

Output:

a\u001Fb\u001E
c\u001Fd\u001E

FAQ

What converters are available?

When to use this command?

Use this command when you want to convert from USV to ASV.

A typical use case is when you have USV data, such as a collection of units and records, and you want to convert it to ASV data, such as for a spreadsheet import.

Our real-world use case is converting a bunch of document-oriented data from a variety of programs to a variety of data formats, spreadsheets, and databases.

Why use USV instead of ASV?

See the documentation for USV.

Is USV aiming to become a standard?

Yes, USV is submitted to IETF.org as an Internet-Draft work in progress: link.

Can I build my own USV tools?

Yes, and you may freely use the USV RFC and USV Rust crate.

Help wanted

Constructive feedback welcome. Pull requests and feature requests welcome.

Tracking

  • Package: usv-to-asv-rust-crate
  • Version: 1.5.2
  • Created: 2024-03-09T13:33:20Z
  • Updated: 2024-04-11T19:35:23Z
  • License: MIT or Apache-2.0 or GPL-2.0 or GPL-3.0 or contact us for more
  • Contact: Joel Parker Henderson (joel@sixarm.com)

Dependencies

~1.5MB
~23K SLoC