An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          


logo




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.