A CLI tool to look up Bible verses locally.
Project description
grepbible
grepbible
is a command-line interface (CLI) tool designed to make searching for Bible verses (in ca. 60 languages) locally (like grepping) and looking up the Bible quotes fast and intuitive.
It also represents a new channel for Bible distribution and aids in language learning, as parallel Bible translations have been used for centuries to learn languages.
Wikipedia article on Bible citations
The raw text is taken from Wordproject®, and has undergone processing to fit the specific needs and format of this project.
Features
- Search Capabilities: Look up individual verses, ranges of chapters, or specific passages across multiple translations.
- Multiple Bible Versions: Easily switch between different Bible translations to compare interpretations and wording.
- Local Caching: Bible versions are downloaded and stored locally for quick access and offline use.
- Parallel and interleave text: Combine text blocks from different translations.
Installation
To install grepbible
, ensure you have Python 3.9 or higher installed on your system. You can install grepbible
directly from PyPI:
pip install grepbible
This command installs the grepbible
package and makes the gbib
command available in your shell.
You might need to update your PATH
as well (e.g. on Ubuntu):
export PATH=$PATH:$(python3 -m site --user-base)/bin
and add it to ~/.bashrc
to make it persistent
Usage
grepbible
is designed to be straightforward and easy to use from the command line. The default version (unless the flag -v
is specified) is 'kj' (KJV), in English.
Below are some common usage examples:
Look Up a Single Verse
gbib -c "John 3:11"
Verily, verily, I say unto thee, We speak that we do know, and testify that we have seen; and ye receive not our witness.
Compare Verses in Different Translations
gbib -v kj,pl -c "Romans 8:20"
For the creature was made subject to vanity, not willingly, but by reason of him who hath subjected the same in hope,
Gdyż stworzenie marności jest poddane, nie dobrowolnie, ale dla tego, który je poddał,
Lookup a Chapter
gbib -c 'Psalms 117'
O Praise the LORD, all ye nations: praise him, all ye people.
For his merciful kindness is great toward us: and the truth of the LORD endureth for ever. Praise ye the LORD.
Show a Range of Verses
gbib -c "Gen 41:29-30"
Behold, there come seven years of great plenty throughout all the land of Egypt:
And there shall arise after them seven years of famine; and all the plenty shall be forgotten in the land of Egypt; and the famine shall consume the land;
Fetch Multiple Disjoint Verses
gbib -c "Genesis 1:1,3"
Compare different versions
Show interleave translation of Latin Vulgata to English KJV (line-by-line):
gbib -c 'Gen 41:29-30' -v kj,vg -i
Block-by block translation (omit the flag -i
):
gbib -c 'Gen 41:29-30' -v kj,vg
Behold, there come seven years of great plenty throughout all the land of Egypt:
And there shall arise after them seven years of famine; and all the plenty shall be forgotten in the land of Egypt; and the famine shall consume the land;
ecce septem anni venient fertilitatis magnae in universa terra Aegypti
quos sequentur septem anni alii tantae sterilitatis ut oblivioni tradatur cuncta retro abundantia consumptura est enim fames omnem terram
Random quotes
Time for some fun! One can generate random quotes (in different languages and in parallel as well).
gbib -r
Get help
For more information on command options and additional features, you can run:
gbib --help
Use with grep
One can literally use grep
to look up the verses and leverage gbib
only for downloading the sources. Here's how.
First, download KJV ('kj') and Vulgata ('vg'). The data is stored in $HOME/grepbible_data
, thus, it makes sense to store it as a variable, e.g. the path to the 5th chapter of Exodus in KJV will be $HOME/grepbible_data/kj/Exodus/5.txt
gbib -d kj,vg
export GB=$HOME/grepbible_data/kj
Go to line
Example, jump 10th line of 5th chapter in Exodus:
less +10 $GB/Exodus/5.txt
Count occurences of words
How often the word 'camel' appears in the Bible:
grep -nr $GB -e camel | wc -l # 59
What was this quote about the sheep and wolves?
grep -nr $GB -e wolves | grep sheep
Contributing
Contributions to grepbible
are welcome! Whether it's improving code, or reporting issues, or spreading the word, or financial support, your input is valuable.
Issues/bugs
To raise an issue, go to 'Issues' tab, and click on 'New issue'.
Code
To contribute code:
- Fork the repository.
- Create a new branch for your feature or fix.
- Commit your changes with clear, descriptive messages.
- Push your branch and submit a pull request.
Please ensure your code adheres to the project's style and quality standards. For major changes, please open an issue first to discuss what you would like to change.
Social
Feel free to spread the word or/and use the hashtag #grepbible
in social media.
Financial
License
grepbible
is open-source software licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file grepbible-0.2.3.tar.gz
.
File metadata
- Download URL: grepbible-0.2.3.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55f451d2f1b2a737c01a88cfc922041d179fca77f3bfddd8eec2a45bc3159ba0 |
|
MD5 | a2607a242095a8fa5b4137430232bebf |
|
BLAKE2b-256 | 92280800cd78787d2c10acb40ada1ed08aa6aa684c0164a88450fc45bbdf5451 |
File details
Details for the file grepbible-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: grepbible-0.2.3-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46733c7444a14efd316a06da8d0f00cde5de4db53befe6533ba2561f613d6b8a |
|
MD5 | 594360557c69c822a184a1209c757a2f |
|
BLAKE2b-256 | 73e02f4a068ad5505104411ff91e9de5154144f72a9fa7d5d8249d25c03c209d |