Metadata-Version: 2.4
Name: buganize
Version: 1.2.0
Summary: Unofficial Python client for the Google Issue Tracking system (Buganizer)
Keywords: buganizer,google-issue-tracker,issue-tracker,bug-tracker,bug-bounty,vulnerability,security,chromium,cve,vrp,google
Author: Ritchie Mwewa
Author-email: Ritchie Mwewa <hi@rly0nheart.com>
License-Expression: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Bug Tracking
Classifier: Framework :: AsyncIO
Requires-Dist: httpx>=0.28.1
Requires-Dist: rich>=14.3.3
Requires-Dist: update-checker>=0.18.0
Requires-Python: >=3.11
Project-URL: repository, https://github.com/rly0nheart/buganize
Description-Content-Type: text/markdown

<p align="center">
<img alt="logo" src="https://www.gstatic.com/buganizer/img/v0/logo.svg" width="150" height="150">
<br>
<br>
<strong>Unofficial Python client for the Google Issue Tracking system (Buganizer)</strong>
</p>

## Installation

```shell
pip install buganize
```

## Quick start

```python
from buganize import Buganize


async def main():
    async with Buganize() as client:
        result = await client.search("status:open priority:p1", page_size=25)
        for issue in result.issues:
            print(f"#{issue.id} [{issue.status.name}] {issue.title}")
```

```bash
buganize search "status:open"
```

## Documentation

- See [USAGE.md](https://github.com/rly0nheart/buganize/blob/master/USAGE.md) for full library and CLI documentation.
- See [API Reference](https://github.com/rly0nheart/buganize/tree/master/src/buganize/api#readme) for details about
  limitations, and how the API works.
