0

我正在使用 VersionOne Python SDK,并且想知道故事何时移入某个项目(范围)。我可以检索故事,但如何获取历史?

v1 = V1Meta()
for story in v1.Story.where(Number="S-01211"):
    print story.Scope.Name   # prints current value

# but how to retrieve historical values?
4

1 回答 1

1

如果您想查看过去的特定点,请使用“asof”修饰符。您必须在查询“选择”中包含范围名称才能获取历史值。

v1 = V1Meta()

past_date = '2012-11-01'

query = (v1.Story
           .where(Number="S-01211")
           .asof('2012-11-01')
           .select('Number', 'Name', 'Owners.Name', 'Scope.Name')
        )

for story in query:
    print story.data['Scope.Name']   # prints current value
于 2012-11-28T20:15:02.467 回答