web-dev-qa-db-ja.com

バグIDをその作成日と関連付けるubuntu

私はlauchpadlibを使用してubuntuのバグをピックアップするpythonスクリプトを書いています。特定の期間中に報告されたすべてのバグを知りたいです。今、私が念頭に置いているいくつかの質問があります。ubuntuランチパッドでバグのIDが連続的にインクリメントされますか?また、最初に必要なIDをどのように把握できますか?

ありがとう

1
noddy

はい、Launchpadのバグは段階的に増加します。

バグが作成された日付は次のように取得できます。

>>> import os
>>> from launchpadlib.launchpad import Launchpad
>>> 
>>> cachedir = os.path.expanduser("~/.launchpadlib/cache/")
>>> launchpad = Launchpad.login_anonymously('find_branches',
...                                         'production',
...                                         cachedir)
>>> bug = launchpad.bugs['1214615']
>>> bug.date_created
datetime.datetime(2013, 8, 20, 21, 38, 24, 839934, tzinfo=TimeZone(0))
1
andrewsomething