Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uasi/skv
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/uasi/skv
- Owner: uasi
- License: mit
- Created: 2015-06-18T09:58:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-18T10:26:00.000Z (over 9 years ago)
- Last Synced: 2023-04-14T01:31:03.587Z (over 1 year ago)
- Language: Rust
- Size: 121 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# skv - Something from Key-Value
skv converts human-writable key-value pairs into JSON and some other stuff.
## Synopsis
```
$ skv key=value 'what$#\=!=?@"' 'raw_json:=[42]' | jq .
{
"key": "value",
"raw_json": [
42
],
"what$#=!": "?@\""
}$ skv --curl User-Agent:skv key=value 'what$#\=!=?@"'
-d key=value&what%24%23%3D%21=%5C%5C%3F%40%22 -H 'User-Agent: skv'$ curl $(skv --curl User-Agent:skv key=value) -X POST http://example.com/
...
```## License
skv is released under the MIT license.
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request