https://github.com/rly0nheart/buganize
Unofficial Python client for the Google Issue Tracking system (Buganizer)
https://github.com/rly0nheart/buganize
bug-bounty bug-tracker buganizer chromium issue-tracker
Last synced: 3 months ago
JSON representation
Unofficial Python client for the Google Issue Tracking system (Buganizer)
- Host: GitHub
- URL: https://github.com/rly0nheart/buganize
- Owner: rly0nheart
- License: mit
- Created: 2026-02-20T20:09:53.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2026-03-26T01:42:03.000Z (3 months ago)
- Last Synced: 2026-03-26T23:37:11.918Z (3 months ago)
- Topics: bug-bounty, bug-tracker, buganizer, chromium, issue-tracker
- Language: Python
- Homepage: https://pypi.org/p/buganize
- Size: 205 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Python client for the Google Issue Tracking system (Buganizer)
## Installation
```shell
pip install buganize
```
**Or with the CLI utility:**
```shell
pip install buganize[cli]
```
### Nix
A `shell.nix` is provided for Nix users:
```shell
nix-shell
```
## Quick start
```python
from buganize import Buganize
async def main():
async with Buganize() as client:
result = await client.search(query="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.