Initial commit.

This commit is contained in:
Jonathan Bernard 2023-05-03 09:58:14 -05:00
commit 4eb7f6914b
4 changed files with 64 additions and 0 deletions

BIN
.nim_esv_api.nimble.swp Normal file

Binary file not shown.

14
nim_esv_api.nimble Normal file
View File

@ -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"]

BIN
src/.nim_esv_api.nim.swp Normal file

Binary file not shown.

50
src/nim_esv_api.nim Normal file
View File

@ -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 <reference> [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 <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)