{"id":26940251,"url":"https://github.com/maxwelljens/bibel","last_synced_at":"2026-05-05T17:32:32.265Z","repository":{"id":41357087,"uuid":"410342532","full_name":"maxwelljens/bibel","owner":"maxwelljens","description":"Bible command line interface utility","archived":false,"fork":false,"pushed_at":"2023-12-15T12:51:34.000Z","size":5192,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-02T15:17:14.899Z","etag":null,"topics":["bible","christian","christianity","cli","command-line","console","linux","productivity","rust","rust-lang","terminal","text"],"latest_commit_sha":null,"homepage":"https://maxwelljensen.no/git/maxwelljensen/bibel","language":"Rust","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"eupl-1.2","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxwelljens.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-25T17:47:26.000Z","updated_at":"2025-02-17T23:30:56.000Z","dependencies_parsed_at":"2024-06-21T17:46:49.134Z","dependency_job_id":"da896231-9a27-403a-9847-f2c8dc281cb3","html_url":"https://github.com/maxwelljens/bibel","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/maxwelljens/bibel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwelljens%2Fbibel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwelljens%2Fbibel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwelljens%2Fbibel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwelljens%2Fbibel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxwelljens","download_url":"https://codeload.github.com/maxwelljens/bibel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxwelljens%2Fbibel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32660270,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bible","christian","christianity","cli","command-line","console","linux","productivity","rust","rust-lang","terminal","text"],"created_at":"2025-04-02T15:17:24.139Z","updated_at":"2026-05-05T17:32:32.247Z","avatar_url":"https://github.com/maxwelljens.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"![bibel](/logo.gif \"bibel\")\n\n![GitHub](https://img.shields.io/github/license/maxwelljens/bibel?label=Licence) ![GitHub last commit](https://img.shields.io/github/last-commit/maxwelljens/bibel?label=Last%20Commit)\n![preview](./preview.svg)\n\n## What is bibel?\n\n`bibel` (*bee•bell*) is a command line interface (CLI) utility for the Bible. Its primary use is for quick reference\nfrom the command line and piping into other programs, as reading the whole Bible by itself in the command line is not\nvery comfortable.\n\n## How do I use bibel?\n\n    bibel [OPTIONS]... [ARGS]...\n\n    ARGS:\n        \u003cBOOK\u003e       Book from the Bible\n        \u003cCHAPTER\u003e    Chapter in \u003cBOOK\u003e\n        \u003cVERSE\u003e      Verse in \u003cCHAPTER\u003e\n\nIf no arguments are specified, the entire Bible is printed. Specify BOOK to print a book from the Bible; specify BOOK\nand CHAPTER to print a chapter from the Bible; specify BOOK, CHAPTER, and VERSE to print a verse or range of verses\nfrom the Bible.\n\nExample usage:\n\n    $ bibel | grep \"inherit the earth\"\n    Matthew. Chapter 5. [4] Blessed are the gentle, for they shall inherit the earth.\n\n    $ bibel \"1 mac\" 1 1:6\n    1 Maccabees. Chapter 1. [1] After Alexander the Macedonian, the son of Philip, who [...]\n\n    $ bibel gen\n    [Prints the entirety of Genesis]\n\n## How does bibel work?\n\n`bibel` uses simple substring matching to find books and chapters. This works completely adequately for most of\neverything, although `bibel john X Y` will match both *Book of John* and letters from Saint John (*1 John*, *2 John*,\nand *3 John*) as a consequence.\n\nNames of books used are their standard short names, e.g. *1 Maccabees* instead of *The First Book of Maccabees*.\n\n## How do I build bibel?\n\n`bibel` is written in Rust. External dependencies are [bitflags](https://github.com/bitflags/bitflags),\n[clap](https://github.com/clap-rs/clap), [colored](https://github.com/mackwic/colored),\n[rayon](https://github.com/rayon-rs/rayon), and [rust-embed](https://github.com/pyros2097/rust-embed). The files in\n`/web_bible` are embedded during compilation of `main.rs`, and are accessed thusly and portably at runtime.  The format\nof text that is expected during embedding is as follows:\n\n- **First line**: Book title\n- **Second line**: Chapter\n- **Every line after**: Verse\n- Each text file is a chapter\n\n## Licence\n\nThis project is licensed under [European Union Public Licence\n1.2](https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12). The Bible used is the World English Bible, which\nis in the public domain. World English Bible is a trademark of [eBible.org](https://www.ebible.org/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxwelljens%2Fbibel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxwelljens%2Fbibel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxwelljens%2Fbibel/lists"}