docopt-ng VS docopt.rs

Compare docopt-ng vs docopt.rs and see what are their differences.

docopt-ng

Humane command line arguments parser. Now with maintenance, typehints, and complete test coverage. (by jazzband)

docopt.rs

Docopt for Rust (command line argument parser). (by docopt)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
docopt-ng docopt.rs
5 4
160 752
5.6% -
4.1 0.0
23 days ago about 3 years ago
Python Rust
MIT License The Unlicense
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

docopt-ng

Posts with mentions or reviews of docopt-ng. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-26.

docopt.rs

Posts with mentions or reviews of docopt.rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-16.
  • Docopt.sh – Command-Line Argument Parser for Bash 3.2, 4, and 5
    5 projects | news.ycombinator.com | 16 Mar 2023
    Consider using clap or possibly structopt instead.

    It's a lovely way to internalize the CLI argument cultural norms, decrease confusing and verbose argument parsing, make argument parsing work-free for the developer, and make argument parsing a copy-paste across languages. There's no greater pleasure than iteratively adding options to your program by just adding a line of text

    -n, --new-option Do something new

    I honestly think making a docopt parser is just very hard, which may limit its future prospects.

    [the docopt rust repo.]: https://github.com/docopt/docopt.rs

  • Fedora to disallow CC0-licensed code
    2 projects | news.ycombinator.com | 25 Jul 2022
    Ditto, I guess? :P (But obviously with the position on the Unlicense flipped.)

    To address your indictment head-on: you suggesting the 0BSD as a better alternative is really missing my point. The 0BSD is not an alternative for my use case. The Unlicense is one of the very few overt "political" acts that I inject into the software I produce. Its purpose is to make a statement. The 0BSD doesn't do that IMO, so it's not actually an alternative that meets my advocacy goal.

    You and Rick Moen seem to have the same apparent blind spot for this. See my conversation with him that started here (which might also clarify some aspects of my own position): https://github.com/docopt/docopt.rs/issues/1#issuecomment-42...

    And finally, note that my dual licensing scheme is exactly a response to the "problems pointed out by quite a few people": https://github.com/BurntSushi/byteorder/issues/26

  • Docopt
    7 projects | news.ycombinator.com | 31 Dec 2021
    I like Docopt for quick scripts, used it both in Python and Rust projects. It is quite unflexible though.

    The Rust Docopt implementation¹ was deprecated this year, which is probably good because clap v3 (https://github.com/clap-rs/clap) is so awesome. In a project of mine (tealdeer), I noticed that docopt.rs was responsible for the huge majority of CPU instructions when running the binary: https://github.com/dbrgn/tealdeer/issues/106#issuecomment-59... I then switched² to clap and shaved off almost a megabyte from the release binary³. Performance improved as well, time required for rendering a tldr page went down from ~15.9 ms to ~12.4 ms⁴. With the migration, we also managed to reduce a lot of custom validation logic and move this logic into the derive macro attributes.

    ¹ https://github.com/docopt/docopt.rs

  • clap 3.0.0-rc.7
    10 projects | /r/rust | 16 Dec 2021

What are some alternatives?

When comparing docopt-ng and docopt.rs you can also consider the following projects:

PyInquirer - A Python module for common interactive command line user interfaces

clap-rs - A full featured, fast Command Line Argument Parser for Rust

protoargs - Code generated C++11/Python/Rust/Go command line arguments parser, based on protobuf configuration

structopt - Parse command line arguments by defining a struct.

docopt - This project is no longer maintained. Please see https://github.com/jazzband/docopt-ng

easy_flag - Simple command line flag parser for rust.

ctrl - Ctrl is a terminal tool that allows you to copy a file THEN paste it elsewhere.

byteorder - Rust library for reading/writing numbers in big-endian and little-endian.

argc - A Bash CLI framework, also a Bash-based command runner.

typer - Typer, build great CLIs. Easy to code. Based on Python type hints.

cligen - Nim library to infer/generate command-line-interfaces / option / argument parsing; Docs at

tealdeer - A very fast implementation of tldr in Rust.