Qsv Alternatives

Similar projects and alternatives to qsv

  1. bevy

    595 qsv VS bevy

    A refreshingly simple data-driven game engine built in Rust

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. jq

    306 qsv VS jq

    Discontinued Command-line JSON processor [Moved to: https://github.com/jqlang/jq] (by stedolan)

  4. tldr

    276 qsv VS tldr

    📚 Collaborative cheatsheets for console commands

  5. datasette

    198 qsv VS datasette

    An open source multi-tool for exploring and publishing data

  6. fd

    191 qsv VS fd

    A simple, fast and user-friendly alternative to 'find'

  7. lf

    115 qsv VS lf

    Terminal file manager

  8. jc

    98 qsv VS jc

    CLI tool and python library that converts the output of popular command-line tools, file-types, and common strings to JSON, YAML, or Dictionaries. This allows piping of output to tools like jq and simplifying automation scripts.

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. zellij

    97 qsv VS zellij

    A terminal workspace with batteries included

  11. regex

    94 qsv VS regex

    An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.

  12. miller

    67 qsv VS miller

    Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON

  13. xsv

    67 qsv VS xsv

    Discontinued A fast CSV command line toolkit written in Rust.

  14. murex

    65 qsv VS murex

    A smarter shell and scripting environment with advanced features designed for usability, safety and productivity (eg smarter DevOps tooling)

  15. druid

    59 qsv VS druid

    A data-first Rust-native UI design toolkit. (by linebender)

  16. vnlog

    24 qsv VS vnlog

    Process labelled tabular ASCII data using normal UNIX tools

  17. yazi

    21 qsv VS yazi

    💥 Blazing fast terminal file manager written in Rust, based on async I/O.

  18. oxipng

    15 qsv VS oxipng

    Multithreaded PNG optimizer written in Rust

  19. tsv-utils

    eBay's TSV Utilities: Command line tools for large, tabular data files. Filtering, statistics, sampling, joins and more.

  20. usv

    19 qsv VS usv

    Unicode Separated Values (USV) data markup for units, records, groups, files, streaming, and more.

  21. csv-parser

    9 qsv VS csv-parser

    Streaming csv parser inspired by binary-csv that aims to be faster than everyone else

  22. bfs

    9 qsv VS bfs

    A breadth-first version of the UNIX find command

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better qsv alternative or higher similarity.

qsv discussion

Log in or Post with

qsv reviews and mentions

Posts with mentions or reviews of qsv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-19.
  • fd: A simple, fast and user-friendly alternative to 'find'
    23 projects | news.ycombinator.com | 19 Mar 2025
  • ASCII Delimited Text – Not CSV or Tab Delimited Text
    1 project | news.ycombinator.com | 11 Nov 2024
  • Developing a CKAN Handler for MindsDB: Bridging Open Data and Machine Learning
    4 projects | dev.to | 16 Oct 2024
    CKAN serves as a data catalog, organizing metadata and actual data in its databases incorporating Datapusher Plus, powered by the lightning-fast QSV library.
  • Shell Cacophony
    4 projects | dev.to | 29 Aug 2024
    { stdenv , lib , fetchzip , autoPatchelfHook }: stdenv.mkDerivation rec { pname = "qsv"; version = "0.132.0"; src = fetchzip { url = "https://github.com/jqnatividad/qsv/releases/download/${version}/qsv-${version}-x86_64-unknown-linux-gnu.zip"; hash = "sha256-yko+wTSGxOZWU1cJS17sPYPQeBcfyeiwQUu6dPhpL1s="; stripRoot = false; }; nativeBuildInputs = [ autoPatchelfHook stdenv.cc.cc.lib ]; buildInputs = [ ]; sourceRoot = "."; installPhase = '' runHook preInstall install -m755 -D source/qsvp $out/bin/qsv runHook postInstall ''; meta = with lib; { homepage = "https://github.com/jqnatividad/qsv"; description = "CSVs sliced, diced & analyzed."; platforms = platforms.linux; }; }
  • Ask HN: How would you chunk a large Excel file?
    1 project | news.ycombinator.com | 26 May 2024
    xsv is great. I quite like the fork called qsv as well; it has some features that were helpful to avoid some piping I didn't want to do. There are a lot of other additions. https://github.com/jqnatividad/qsv
  • FLaNK Weekly 31 December 2023
    25 projects | dev.to | 31 Dec 2023
  • Qsv: Efficient CSV CLI Toolkit
    8 projects | news.ycombinator.com | 22 Dec 2023
    Thanks for the detailed feedback @snidane!

    As maintainer of qsv, here's my reply:

    - Given qsv's rapid release cycle (173 releases over three years), the auto-update check is essential at the moment. Once we reach 1.0, I'll turn it off. For now, given your feedback, I've only made it check 10% of the time.

    - Pivot is in the backlog and I'll be sure to add unpivot when I implement it. (https://github.com/jqnatividad/qsv/issues/799)

    - I'll add a dedicated summing command with the group by (-by) and window by (-over) capability (https://github.com/jqnatividad/qsv/issues/1514). Do note that `stats` has basic sum as @ezequiel-garzon pointed out.

    - With the `enum` command, qsv can achieve what you proposed with `laminate`. E.g. qsv enum --new-column newcol --constant newconstant mydata.csv --output laminated-data.csv

    - With the cat rowskey command, qsv can already concatenate files with mismatched headers.

    - other file formats. qsv supports parquet, csv, tsv, excel, ods, datapackage, sqlite and more (see https://github.com/jqnatividad/qsv/tree/master#file-formats). Fixed-format though is not supported yet and quite interesting, and have added it to the backlog (https://github.com/jqnatividad/qsv/issues/1515)

    - as to "enable embedding outputs of commands", qsv is composable by design, so you can use standard stdin/stdout redirection/piping techniques to have it work with other CLI tools like jq, awk, etc.

    Finally, just released v0.120.0 that already incorporates the less aggressive self-update check. https://github.com/jqnatividad/qsv/releases/tag/0.120.0

  • Joining CSV Data Without SQL: An IP Geolocation Use Case
    3 projects | news.ycombinator.com | 19 Oct 2023
  • Why my favourite API is a zipfile on the European Central Bank's website
    10 projects | news.ycombinator.com | 15 Sep 2023
    qsv [1] also has a sqlp command which lets you run Polars SQL queries (even on multiple files). Here I'll send the csv data from stdin (represented by -) and then (optionally) pipe the output to the table command for formatting. The shape of the result is also printed to stderr (the (4, 2) below).

    [1] https://github.com/jqnatividad/qsv

    $ echo 'Name,Department,Salary

  • Qsv: Ultra-fast CSV data-wrangling toolkit
    1 project | news.ycombinator.com | 28 Jun 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 14 Jul 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic qsv repo stats
18
2,969
10.0
3 days ago

dathere/qsv is an open source project licensed under The Unlicense which is an OSI approved license.

The primary programming language of qsv is Rust.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Rust is
the 5th most popular programming language
based on number of references?