Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 969 Bytes

File metadata and controls

31 lines (24 loc) · 969 Bytes

logo

Python client for the Google Issue Tracking system (Buganizer)

Quick start

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"

Documentation

See:

  • Installation for installation guide.
  • Usage for full library and CLI documentation.
  • API Reference for details about limitations, and how the API works.