Command Line Tool to Work with Transit Format
Project description
Command Line Tool to Work with Transit Format
Free software: ISC license
Documentation: https://transito.readthedocs.org.
Features
convert to and form json, edn, transit
read content from stdin or files
Usage
$ transito -h usage: transito [-h] {t2j,j2t,e2t,t2e,http} ... Transit CLI positional arguments: {t2j,j2t,e2t,t2e,http} t2j convert transit to json j2t convert json to transit e2t convert edn to transit t2e convert transit to edn http make http requests with transit data optional arguments: -h, --help show this help message and exit
Conversions
Convert Transit to JSON from a file:
$ transito t2j examples/ex1.transit [":keyword", "~lala", 1, 1.2, true, null, [], ["hi", "a"]]
Convert Transit to JSON from stdin:
$ transito t2j - ["~#list",["~:keyword","~$lala",1,1.2,true,null,[],["hi",["~#char","a"]]]] [":keyword", "~lala", 1, 1.2, true, null, [], ["hi", "a"]]
Piping from another command:
$ echo '["~#list",["~:keyword","~$lala",1,1.2,true,null,[],["hi",["~#char","a"]]]]' | transito t2j - [":keyword", "~lala", 1, 1.2, true, null, [], ["hi", "a"]]
Same for Edn:
$ transito t2e examples/ex1.transit (keyword lala 1 1.2 true nil [] ["hi" \a])
$ echo '["~#list",["~:keyword","~$lala",1,1.2,true,null,[],["hi",["~#char","a"]]]]' | transito t2e - (keyword lala 1 1.2 true nil [] ["hi" \a])
$ transito t2e - ["~#list",["~:keyword","~$lala",1,1.2,true,null,[],["hi",["~#char","a"]]]] (keyword lala 1 1.2 true nil [] ["hi" \a])
you should get the idea, some with transit as output just in case:
$ transito e2t - (keyword lala 1 1.2 true nil [] ["hi" \a]) ["~#list",["~$keyword","~$lala",1,1.2,true,null,[],["hi",["~#char","a"]]]] $ transito t2j - ["~#list",["~$keyword","~$lala",1,1.2,true,null,[],["hi",["~#char","a"]]]] ["~keyword", "~lala", 1, 1.2, true, null, [], ["hi", "a"]]
HTTP Requests
You an make an http request that supports transit, json or edn but writting and reading the request and response in a more readable way, for example, make a request writing edn that will be transformed to transit before being sent, the response will be transformed to edn if possible to make it more readable:
$ echo ‘(increment {:value 20})’ | transito http post http://localhost:8080/action e2t -
Status: 200 Content-Type: application/transit+json Content-Length: 28
{:value [:count]}
You may ask, isn’t it complected? yes, yes it is.
Credits
Tools used in rendering this package:
History
0.1.1 (2015-25-11)
add support for http requests
fix keyword serialization in edn
0.1.0 (2015-25-11)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for transito-0.1.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 153ff865dbf881df66268ba381756ea8e9af54ba3a52d9e173c1a6a802de73f9 |
|
MD5 | 7941c639b13cc83f8f2a0d1f4918b802 |
|
BLAKE2b-256 | fb50594ba2706a37ccd97ed23145b650d7369b074681c917a87b7da137945658 |