Gobible is a library for interacting with the Bible in Go.
Initially, Gobible was created as an effort to support an easy to use JSON format for the Bible for use in other projects, but through development has grown to instead be a library for working with that format, as well and importing other formats into the Gobible format.
Please note that since Gobible works around a data structure defined by the Gobible JSON format, some features of other formats may not be supported.
There are a few ways to initialize a bible:
// Initialize an empty GoBible object
b := NewGoBible()
// Load a GoBible formatted JSON file
b.Load("KJV.json")
// Load an alternate support format
b.LoadFormat("WEB.xml", "osis")
One you have a Bible object with some translations loaded into it, you can use this object in a few ways.
You can load an individual translation, and use it similarly to this:
// Load the KJV translation
kjv := bible.GetTranslation("KJV")
// get a verse
verse := kjv.GetBook("Genesis").GetChapter(1).GetVerse(1)
fmt.Println("Genesis 1:1 - " + verse.Text)
// Genesis 1:1 - In the beginning God created the heaven and the earth.
You can also use this to generate GoBible format JSON files from other formats:
b := NewGoBible()
// Load an OSIS XML file
b.LoadFormat("WEB.xml", "osis")
// Save the translation as GoBible JSON
goBibleJson := b.GetBibleJSON("WEB")
// Save the translation as GoBible JSON to a file
os.WriteFile("WEB.json", []byte(goBibleJson), 0644)
Once you have 1 or multiple translations loaded, you can interact with them by reference notation.
(If you have multiple translations loaded, the first translation loaded will be used as the default)
// Examples of some valid references:
// John 3:16
// John 3:16-18
// 1 Cor 1:2-5
// 1 Cor 1:2-2:5
// You can also tag the translation at the end of the reference
// John 3:16 WEB
// John 3:16 KJV
// Lookup by reference
refs, _ := b.ParseReference("Gen 1:31-2:1")
for _, r := range refs {
fmt.Printf("%s %d:%d %s", r.Book, r.Chapter, r.Verse, r.VerseRef.Text)
}
// Genesis 1:31 God saw everything that he had made, and, behold, it was very good. There was evening and there was morning, the sixth day.
// Genesis 2:1 The heavens and the earth were finished, and all the host of them.
We have published a few Public Domain bibles, as well as a Go program to generate additional ones in the gobible-gen repo.