The purpose of this tool is to be able to read, search, export bible data. Right now there's only a parser for the Zefania XML format. Bible Translations in the Zefania XML format can be downloaded from strongs-de/zefania-xml-bibles or SourceForge.
USAGE:
bible-cli.exe [OPTIONS] [SUBCOMMAND]
OPTIONS:
-h, --help Print help information
-v, --verbose Sets the level of verbosity
-V, --version Print version information
SUBCOMMANDS:
export Exports the bible into static json files
help Print this message or the help of the given subcommand(s)
search searches in the bible
serve serves the bible REST api
This command can be used to export a bible file into many json files. These files can be used to display the new strongs-v2 web ui.
USAGE:
bible-cli export [OPTIONS] <BIBLE>
OPTIONS:
-h, --help Print help information
-o, --outdir Output directory
Examples:
# Export a single bible
bible-cli bibles/GER_LUTH1912.xml export
# Export all bible files in a folder
bible-cli "bibles/*.xml" export
You can use bible-cli
to search for a word or phrase in a bible translation, using the search command.
USAGE:
bible-cli search [OPTIONS] <BIBLE> [--] [TERM]
ARGS:
<TERM> search term
OPTIONS:
-h, --help Print help information
-t, --times [<time>...] Execute search given times
Examples:
# Search for a word
bible-cli bibles/GER_LUTH1912.xml search Abraham
You can use bible-cli
to provide a rudimentary REST Api for a chosen bible translation.
USAGE:
bible-cli.exe serve [OPTIONS]
OPTIONS:
-f, --folder [<folder>...] Path to the bible XML files
-h, --help Print help information
-p, --port [<port>...] Port to host the API (default: 8000)
Examples:
bible-cli bibles/GER_ELB1905_STRONG.xml serve
The endpoints available are:
# Get info of the chosen bible translation
curl http://localhost:8000/{identifier}/info
{
"identifier": "ELB1905STR",
"name": "Elberfelder 1905"
}
# Return a bible chapter
curl http://localhost:8000/{identifier}/{book}/{chapter}
{
"chapter": 1,
"verses": [
{
"verse": 0,
"chunks": [
{
"text": "Darauf",
"strong": {
"number": 1899,
"grammar": null
}
}
]
}
]
}
# Search in the chosen bible
curl http://localhost:8000/{identifier}/{search_term}
[
"0_16_4",
"0_16_8",
"0_16_14",
"0_16_16",
"0_16_17",
"0_16_21"
]
# Hint: The result is a list of strings in the format "{book_nr}_{chapter_nr}_{verse_nr}"
You can use bible-cli
with docker:
docker run --rm -it -v `pwd`:/data mirhec/bible-cli "/data/bibles/*.xml" export