Metadata-Version: 2.4
Name: bibleg
Version: 0.2.0
Summary: Unofficial Bible API
Author-email: Jon Craton <jon@joncraton.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/jncraton/bibleg
Project-URL: Issues, https://github.com/jncraton/bibleg
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# bibleg

[![Test](https://github.com/jncraton/bibleg/actions/workflows/test.yml/badge.svg)](https://github.com/jncraton/bibleg/actions/workflows/test.yml)

Unofficial Bible API in Python

## Installation

```sh
pip install bibleg
```

## Usage

```python
>>> from bibleg import get_text

>>> get_text("John 11:35")
'Jesus wept.'

>>> get_text("Gen 1:1")
'In the beginning, God created the heavens and the earth.'
```
