Python client for the Google Issue Tracking system (Buganizer)
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}")buganize search "status:open priority:p1"See:
- Installation for installation guide.
- Usage for full library and CLI documentation.
- API Reference for details about limitations, and how the API works.