Scripture Lookup is a Python library and command-line tool for looking up scripture verses or chapters. It can also detect scripture references in a string, and convert them between formats and languages. The tool uses scripture and language metadata from Python Scripture Scraper.
- Install Python 3 and the Homebrew package manager (if you don’t already have them installed).
- Install icu4c via Homebrew:
brew install icu4c
- Install Scripture Lookup:
pip install scripturelookup
Pattern:
scripturelookup [command] [input] [options]
Examples:
% scripturelookup get_content "john 3:16" --lang "en"
16 ¶ For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.
% scripturelookup get_label "니파이전서 3:7" --lang "fr" --abbreviated
1 Né 3:7
% scripturelookup get_church_url "helaman 5:12"
https://www.churchofjesuschrist.org/study/scriptures/bofm/hel/5?id=p12&lang=eng#p12
% scripturelookup get_label "/scriptures/nt/1-jn/3.2-3" --lang "cmn-Hant"
約翰一書3:2-3
% scripturelookup get_church_url "/scriptures/ot" --lang "es"
https://www.churchofjesuschrist.org/study/scriptures/ot?lang=spa
% scripturelookup detect_references "As Nephi taught in 1 Ne. 3:7, and again in 2 Nephi 2:25."
[['1 Ne. 3:7', 19, 28], ['2 Nephi 2:25', 43, 55]]
% scripturelookup refresh_metadata
Updated metadata: metadata-languages.min.json, metadata-scriptures.min.json
Examples:
from scripturelookup import lookup
lookup.get_content('john 3:16', lang = 'en')
# 16 ¶ For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life.
lookup.get_label('니파이전서 3:7', lang = 'fr', abbreviated = True)
# 1 Né 3:7
lookup.get_church_url('helaman 5:12')
# https://www.churchofjesuschrist.org/study/scriptures/bofm/hel/5?id=p12&lang=eng#p12
lookup.get_label('/scriptures/nt/1-jn/3.2-3', lang = 'cmn-Hant')
# 約翰一書3:2-3
lookup.get_church_url('/scriptures/ot', lang = 'es')
# https://www.churchofjesuschrist.org/study/scriptures/ot?lang=spa
lookup.detect_references('As Nephi taught in 1 Ne. 3:7, and again in 2 Nephi 2:25.')
# [['1 Ne. 3:7', 19, 28], ['2 Nephi 2:25', 43, 55]]
lookup.refresh_metadata()
# Updated metadata: metadata-languages.min.json, metadata-scriptures.min.json
- get_content – Get chapter or verse content.
- get_label – Get a scripture reference label (i.e. "John 3:16").
- get_church_uri – Get a Gospel Library URI (i.e. "/scriptures/bofm/hel/5.12").
- get_church_url – Get a Gospel Library URL.
- get_church_link – Get an HTML link to Gospel Library.
- get_reference_objects – Get a list of references as objects.
- get_reference_attributes – Get a list of references as dictionaries.
- sort_references – Sort a list of references by label or in traditional book order.
- detect_references – Find scripture references embedded in a string of text.
- refresh_metadata – Download the latest scripture and language metadata. Takes no input.
Any of the following input types are supported. You can also provide several inputs at once as a list (separated by semicolons or line-breaks).
- Chapter or verse references, in any supported language. Examples:
- John 3:16
- Enos 1:13, 15–18
- Psalm 23
- Gen. 1:3 (3–4)
- D&C 20:23; 76:41
- Scripture publication or book names. Examples:
- Old Testament
- Book of Mormon
- 1 Corinthians
- Psalms
- Gospel Library URIs (starting with
/scriptures). Examples:- /scriptures/ot/gen
- /scriptures/nt/matt/1
- /scriptures/nt/john/3.16
- /scriptures/bofm/enos/1.13,15-18
- /scriptures/pgp
- Gospel Library URLs (old or new). Examples:
detect_references takes an arbitrary text string and returns a list of [label, start_offset, end_offset]. The label is the exact detected text (not normalized). Start and end offset indicate the exclusive range of characters in the input string where the reference was found.
Several options are available. Some are only applicable to certain commands.
- lang (optional) – Output language. BCP 47 language codes and Gospel Library language codes are supported. Default: 'en'.
- separator (optional) – String separator between outputs when a list of references is requested. Default: '\n'.
- sort_by (optional) – Method for sorting references. Default: 'none'. Supported values: 'none', 'traditional', or 'label'.
- source (optional) – Content source. Default: 'python-scripture-scraper'. Supported values: 'python-scripture-scraper' or 'ChurchofJesusChrist.org'.
- link_class (optional) – String for the “class” attribute on links. Default: None.
- link_target (optional) – String for the “target” attribute on links. Default: None.
- use_query_parameters (optional) – Whether query parameters should be used on URIs. Default: False.
- skip_lang (optional) – Whether “lang” query parameters should be skipped on URLs. Default: False.
- skip_fragment (optional) – Whether fragments should be skipped on URLs. Default: False.
- skip_book_name (optional) – Whether book names should be skipped on labels. Default: False.
- abbreviated (optional) – Whether book abbrevions should be used on labels. Default: False.
- skip_cleanup (optional) – Whether cleanup of the input string should be skipped when parsing. Can be used to speed up parsing if the input string is guaranteed to have well-formed references. Default: False.
- range_split_limit (optional) – Threshold where a range of sequential verses will be split into separate verse groups. Default: 1.
Python Scripture Scraper – tool for scraping scripture content and metadata from ChurchofJesusChrist.org. geezify-python – tool for converting numbers to and from Geez numerals.