Skip to content

KAIST-CysecLab/buganize

 
 

Repository files navigation

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.

About

Python client for the Google Issue Tracking system (Buganizer)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 86.2%
  • Jupyter Notebook 13.4%
  • Other 0.4%