Metadata-Version: 2.1
Name: bavli-pages
Version: 0.1.3
Summary: List of pages per Masechet at each chapter at the Jewish Talmud/Gemara/Shas Bavli
Home-page: https://github.com/lisrael1/bavli_pages
Author: Lior Israeli
Author-email: israelilior@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/lisrael1/bavli_pages/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

## bavli_pages

### List of pages per Masechet at each chapter at the Jewish Talmud/Gemara/Shas Bavli.

```
usage example:
    b = bp.bavli_pages_as_nested_data()
    b = b['ברכות'].chapters[2].start.page_hebrew_string
    print(b)
        יז:
                    
    b = bp.bavli_per_page()
    print(b.iloc[10])
        masechet    ברכות
        chapter         1
        pages          יב
    print(b.query("pages=='יב'").tail(4).T)
        masechet  תמורה  כריתות  מעילה  נידה
        chapter     1     3     3    1
        pages       יב     ב     יב     יב

    b = bp.bavli_pages_per_chapter()
        
```


