keyword-args alternatives and similar packages
Based on the "Data" category.
Alternatively, view keyword-args alternatives based on common mentions on social networks and blogs.
-
compendium-client
DISCONTINUED. Mu (μ) is a purely functional framework for building micro services. -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of keyword-args or a related project?
README
Keyword Args
Parses a configuration file with keywords followed by arguments,
separated by a space. An example of a file in this format is the
sshd_config
file.
The parser in this library strips out comments, and normalizes
whitespace. It includes a binary, keyword-args
, which reads from
STDIN and emits a CSV file with two columns, containing the keyword
followed by the values.
Executable Usage
Send input to STDIN, and the output will be a CSV with comments stripped and with unnecessary whitespace removed.
$ printf "#Testing\nkeyword a bunch of values #comment" | keyword-args
keyword,"a bunch of values"
Library Usage
This project exposes a library that is usable from Haskell programs for extracting data from input in Keyword-Argument format.
Author
Justin Leitgeb
License
MIT
Copyright
(C) 2015 Stack Builders Inc.
*Note that all licence references and agreements mentioned in the keyword-args README section above
are relevant to that project's source code only.