Greetings, I have successfully gotten the python gdata API to list all groups, and via nested loop, list all group members.
Here is the code: ============================ #groupFeed=service.RetrieveAllGroups() #for i in range(len(groupFeed)): # gName = groupFeed[i]['groupName'] # gDesc = groupFeed[i]['description'] # print "\n", gName, "\n\t\t", gDesc # gId = groupFeed[i]['groupId'] # membersFeed = service.RetrieveAllMembers(gId) # for j in range(len(membersFeed)): # mName = membersFeed[j]['memberId'] # print "\t\t\t\t", mName =============================== HOWEVER, I am trying to print out the time and date of the last post made to each group. After spending many hours researching, I am still unclear how to do this, and any assistance would be greatly appreciated. Please forgive this n00b question, as I have never used python b4 yesterday. Thanks in advance!!!! -- You received this message because you are subscribed to the Google Groups "Google Apps Domain Information and Management APIs" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-apps-mgmt-apis/-/7yke6SKpc-oJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-apps-mgmt-apis?hl=en.
