Unofficial Python client for the Google Issue Tracking system (Buganizer)
pip install buganizeA shell.nix is provided for Nix users:
nix-shellfrom 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}")buganize search "status:open"- See USAGE.md for full library and CLI documentation.
- See API Reference for details about limitations, and how the API works.