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.
-
lens
Lenses, Folds, and Traversals - Join us on web.libera.chat #haskell-lens -
semantic-source
Parsing, analyzing, and comparing source code across many languages -
text
Haskell library for space- and time-efficient operations over Unicode text. -
code-builder
Packages for defining APIs, running them, generating client code and documentation. -
unordered-containers
Efficient hashing-based container types -
compendium-client
Mu (μ) is a purely functional framework for building micro services. -
cassava
A CSV parsing and encoding library optimized for ease of use and high performance -
holmes
A reference library for constraint-solving with propagators and CDCL. -
primitive
This package provides various primitive memory-related operations. -
binary
Efficient, pure binary serialisation using ByteStrings in Haskell. -
resource-pool
A high-performance striped resource pooling implementation for Haskell -
discrimination
Fast linear time sorting and discrimination for a large class of data types -
json-autotype
Automatic Haskell type inference from JSON input -
audiovisual
Extensible records, variants, structs, effects, tangles -
dependent-sum
Dependent sums and supporting typeclasses for comparing and displaying them -
IORefCAS
A collection of different packages for CAS based data structures. -
dependent-map
Dependently-typed finite maps (partial dependent products) -
reflection
Reifies arbitrary Haskell terms into types that can be reflected back into terms -
orgmode-parse
Attoparsec parser combinators for parsing org-mode structured text! -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
protobuf
An implementation of Google's Protocol Buffers in Haskell. -
safecopy
An extension to Data.Serialize with built-in version control -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text. -
scientific
Arbitrary-precision floating-point numbers represented using scientific notation -
uuid-types
A Haskell library for creating, printing and parsing UUIDs
TestGPT | Generating meaningful tests for busy devs
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.