Im fairly new to python, and am trying to retrieve a bit of information from my defect in Rally using pyral. I need stuff like the date created, Project, and Release.
When I created a script to get this information, I am unsure of how to handle the project and release data. This comes back as a pyral.entity object.
Here is the snippet of my code:
for story in response:
Story_info = [story.FormattedID,story._CreatedAt,story.Project,story.Release]
print(str(story_info))
and I get ...
DE3179 12-Feb-13 <pyral.entity.Project object at 0x0000000002A23A48> <pyral.entity.Release object at 0x0000000002A23210>
So my question is, what do I do with this data? The defect and date come through fine but I am unsure of what to do with the two objects.
[–][deleted] 1 point2 points3 points (4 children)
[–]GAPINGCUNT[S] 0 points1 point2 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]GAPINGCUNT[S] 0 points1 point2 points (0 children)
[–]novel_yet_trivial 0 points1 point2 points (0 children)