Skip to content

rly0nheart/buganize

Repository files navigation

logo

Unofficial Python client for the Google Issue Tracking system (Buganizer)

Installation

pip install buganize

Nix

A shell.nix is provided for Nix users:

nix-shell

Quick start

from 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"

Documentation

  • See USAGE.md for full library and CLI documentation.
  • See API Reference for details about limitations, and how the API works.

About

Unofficial Python client for the Google Issue Tracking system (Buganizer)

Topics

Resources

License

Stars

Watchers

Forks

Contributors