Metadata-Version: 2.4
Name: bearkit
Version: 1.6.0
Summary: Python toolkit for the Bear notes app — read, search, secret detection, and verified writes
Keywords: bear,notes,markdown,macos
Author: Michel Tricot
Author-email: Michel Tricot <michel.tricot@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Dist: detect-secrets>=1.5.0
Requires-Dist: rapidfuzz>=3.14.5
Requires-Python: >=3.13
Project-URL: Documentation, https://github.com/michel-tricot/bearcli/blob/main/docs/BEARKIT.md
Project-URL: Homepage, https://michel-tricot.github.io/bearcli/
Project-URL: Repository, https://github.com/michel-tricot/bearcli
Description-Content-Type: text/markdown

# 🐻 `bearkit`

The Python toolkit for the [Bear](https://bear.app) notes app: read your
notes, write them through the Bear app with verification, search them, and
detect secrets - all offline. macOS only.

```python
from bearkit import Bear

with Bear() as bear:
    for note in bear.list_notes(tag="work", limit=10):
        print(note.title)
```

Full API reference:
[docs/BEARKIT.md](https://github.com/michel-tricot/bearcli/blob/main/docs/BEARKIT.md).
`bearkit` powers [`bearcli`](https://pypi.org/project/bearcli/), the CLI and
terminal UI; install that for the full tool.
