From 4eb7f6914b5c0e8842e5ab906c1149c6672923f5 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 3 May 2023 09:58:14 -0500 Subject: [PATCH] Initial commit. --- .nim_esv_api.nimble.swp | Bin 0 -> 12288 bytes nim_esv_api.nimble | 14 +++++++++++ src/.nim_esv_api.nim.swp | Bin 0 -> 12288 bytes src/nim_esv_api.nim | 50 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 .nim_esv_api.nimble.swp create mode 100644 nim_esv_api.nimble create mode 100644 src/.nim_esv_api.nim.swp create mode 100644 src/nim_esv_api.nim diff --git a/.nim_esv_api.nimble.swp b/.nim_esv_api.nimble.swp new file mode 100644 index 0000000000000000000000000000000000000000..6c279bf99cd70257ca4e7c7189c0485cd8313e2c GIT binary patch literal 12288 zcmeI&&rcLF6bJAJ2X6AqgmWnuJnXQGK#0kz;Br_ahKO>|7}A+}vW4AFZD;T%e*y`A zj{l1%{|1dm-(+`{aM*<7ns1Yrb~>Hc_H%2dY4fCesCJW0lCntjB)-XSR_5s07Ll)l zjf48dpBlRl=<#N&S%0;rSJlJiclStup%8!o1Rwwb2tWV=5P-n63zU9_u4EIlqm9gu z>X|$B=n)kJAOHafKmY;|fB*y_009U<00L7eU~-~sIrRUi5B~E1e|-M`wLtV!;=9B* z2`}+pq9d^;p(R!&mL--XevflZp#hc*0SG_<0uX=z1Rwwb2tWV=|Aj!{&y@`v)$*A?qzGq^G?}XG6}M-7SvXVnj8pp@oC&$6OAc{3QN0S8teLcu;U14n Jc45w#{r~{feun@6 literal 0 HcmV?d00001 diff --git a/nim_esv_api.nimble b/nim_esv_api.nimble new file mode 100644 index 0000000..ffbbf06 --- /dev/null +++ b/nim_esv_api.nimble @@ -0,0 +1,14 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Simple Nim CLI wrapper around the ESV API (api.esv.org)" +license = "MIT" +srcDir = "src" +bin = @["nim_esv_api"] + + +# Dependencies + +requires "nim >= 1.6.10" +requires @["docopt"] diff --git a/src/.nim_esv_api.nim.swp b/src/.nim_esv_api.nim.swp new file mode 100644 index 0000000000000000000000000000000000000000..17dd6ebdffbd747ad36fbc8937a4f646e77476cc GIT binary patch literal 12288 zcmeI2&u<$=6vrnVkZ5UxK~LVj_GqG-H3wkO@)S!Tv| zbK%E707(1|9JqqS5u_qH7;0%U_u%~NFzH6A>}rv{eeS@ID}#+ft3wf6)5v8O z2{Vd#Asa@=u6=;^0orwZKG&Fk=m~fNFHT@+d(o{c?B?Q|3vSX}aGlk%%Pz?&9->xwBC3GK}g)T#vpg&$^>}Tj}=rib3=m?6T22_WxL4RFl z>`&-B=v!zEaVUglp{vlZ@c$R+d*~}DhRT>OU{1Wto`5Id33vjYfG6MyTo?j`>!YEx z;RpEhfXj5KMUA=MM0AIJ>I=I()LP`W^*9!Vl`0Qwb@Xmo9zWXFJQiU!zQ-+3&l=w` z{c?yX4bU>T@ql+z(b8J!CMy?9g{8RHrzKieSy$#FSyp*Z_QOQQs<2Jsx^L#`(5SrW z20oCfSV5y!O(znm5lza)cxAoo-c+49MI?LF!{F9qX{-q+Q#ZIB)S6UqZGa*bfWNya8Z z>-tzrD^?MCc*8w84lGu=QK?u}{l3ukRE$KrJWzqr=S{eI+`WK($0Ho9t)NAa58duh~%Ou zp27$j3xc2woX)vKK0<^p0vd5GUFFrEJLx}3EQ^SgCOZ(++S)z1yU{+_UVp!}_FP+u z=<#7{F;f~E%QU5~AT4-8Lc*G+o>rN&3rmrmC)7vvf^}roBazeX@^%LyZfG@lubxsAcNn zEGV5gE*7-7rLoWgyUZAoQ01ocDvGMJP(#%jG*6Qqu#eYr=V%Ky(&G%^#rj;(So5Mla=BJRWMxt| tgtQ@+IePL9EiNqHq!pFpAmKUP6FTQQ!J{>q(ei4WKAc!^nK?0?{R?1Y`BDG? literal 0 HcmV?d00001 diff --git a/src/nim_esv_api.nim b/src/nim_esv_api.nim new file mode 100644 index 0000000..b90db2c --- /dev/null +++ b/src/nim_esv_api.nim @@ -0,0 +1,50 @@ +# Nim CLI Wrapper for the ESV API +# © 2023 Jonathan Bernard + +## Simple command-line wrapper around the ESV API. + +import std/[httpclient, json, logging] +import cliutils, docopt + +when isMainModule: + const USAGE = """Usage: + esv_api [options] + +Options: + + --debug Log debug information. + + --echo-args Echo back the arguments that were passed on the + command line for debugging purposes. + + -t, --esv-api-token Provide the API token on the command line. By + default this will be read either from the + .esv_api.cfg.json file or the ESV_API_TOKEN + envionment variable. +""" + + let consoleLogger = newConsoleLogger( + levelThreshold=lvlInfo, + fmtStr="pit - $levelname: ") + logging.addHandler(consoleLogger) + + try: + # Parse arguments + let args = docopt(USAGE, version = PIT_VERSION) + + if args["--debug"]: + consoleLogger.levelThreshold = lvlDebug + + if args["--echo-args"]: stderr.writeLine($args) + + let cfgFilePath = getEnv("HOME") / ".esv_api.cfg.json" + let cfgFileJson = + if fileExists(cfgFilePath): parseFile(cfgFilePath) + else: newJObject() + + let cfg = CombinedConfig(docopt: args, json: cfgFileJson) + + except CatchableError: + fatal getCurrentExceptionMsg() + debug getCurrentException().getStackTrace() + quit(QuitFailure)