Popularity
5.8
Growing
Activity
0.0
Stable
1
9
0

Monthly Downloads: 18
Programming language: Haskell
License: MIT License
Tags: Data    
Latest version: v0.2.0.2

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.

Do you think we are missing an alternative of keyword-args or a related project?

Add another 'Data' Package

README

Build Status Hackage

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.