Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polettix/crumbr
Render data structures for easy searching and parsing
https://github.com/polettix/crumbr
Last synced: 27 days ago
JSON representation
Render data structures for easy searching and parsing
- Host: GitHub
- URL: https://github.com/polettix/crumbr
- Owner: polettix
- Created: 2015-07-03T04:53:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-07T17:16:20.000Z (over 7 years ago)
- Last Synced: 2024-10-27T12:33:01.811Z (3 months ago)
- Language: Perl
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
NAME
====Data::Crumbr - Render data structures for easy searching and parsing
SYNOPSIS
========use Data::Crumbr;
say crumbr(\%options)->($data_structure);
$ cat sample.json
{
"ciao": [
"a",
[],
"tutti",
{
"quanti": "voi",
"hey ☺": {},
"some": 123.123
}
]
}$ crumbr sample.json
{"ciao"}[0]:"a"
{"ciao"}[1]:[]
{"ciao"}[2]:"tutti"
{"ciao"}[3]{"hey ☺"}:{}
{"ciao"}[3]{"quanti"}:"voi"
{"ciao"}[3]{"some"}:123.123$ crumbr --style uri sample.json
/ciao/0 "a"
/ciao/1 []
/ciao/2 "tutti"
/ciao/3/hey%20%E2%98%BA {}
/ciao/3/quanti "voi"
/ciao/3/some 123.123ALL THE REST
============There's [a page about it](http://polettix.github.io/crumbr).
Want to know more? [See the module's documentation](http://search.cpan.org/perldoc?App::Crumbr) to figure out
all the bells and whistles of this module!Want to install the latest release? [Go fetch it on CPAN](http://search.cpan.org/dist/App::Crumbr/).
Want to contribute? [Fork it on GitHub](https://github.com/polettix/App::Crumbr).
That's all folks!