]> git.llucax.com Git - personal/website.git/blob - source/blog/posts/2009/10/16-pybugz.rst
Import personal website to git
[personal/website.git] / source / blog / posts / 2009 / 10 / 16-pybugz.rst
1 Title: pybugz, a python and command line interface to Bugzilla
2 Tags: en, d, bugzilla, cli, python, pybugz, software
3
4 Tired of the clumsy Bugzilla_ web interface? Meet pybugz__, a command line
5 interface for Bugzilla_.
6
7 __ http://code.google.com/p/pybugz/
8 .. _Bugzilla: http://www.bugzilla.org/
9
10 An example workflow from the README__ file::
11
12     $ bugz search "version bump" --assigned liquidx@gentoo.org
13
14      * Using http://bugs.gentoo.org/ ..
15      * Searching for "version bump" ordered by "number"
16      101968 liquidx net-im/msnlib version bump
17      125468 liquidx version bump for dev-libs/g-wrap-1.9.6
18      130608 liquidx app-dicts/stardict version bump: 2.4.7
19
20     $ bugz get 101968
21
22      * Using http://bugs.gentoo.org/ ..
23      * Getting bug 130608 ..
24     Title : app-dicts/stardict version bump: 2.4.7
25     Assignee : liquidx@gentoo.org
26     Reported : 2006-04-20 07:36 PST
27     Updated : 2006-05-29 23:18:12 PST
28     Status : NEW
29     URL : http://stardict.sf.net
30     Severity : enhancement
31     Reporter : dushistov@mail.ru
32     Priority : P2
33     Comments : 3
34     Attachments : 1
35
36     [ATTACH] [87844] [stardict 2.4.7 ebuild]
37
38     [Comment #1] dushistov@----.ru : 2006-04-20 07:36 PST
39     ...
40
41     $ bugz attachment 87844
42
43      * Using http://bugs.gentoo.org/ ..
44      * Getting attachment 87844
45      * Saving attachment: "stardict-2.4.7.ebuild"
46
47     $ bugz modify 130608 --fixed -c "Thanks for the ebuild. Committed to
48     portage"
49
50 __ http://github.com/ColdWind/pybugz/blob/master/README
51
52
53 .. vim: set et sw=4 sts=4 :