wip
This commit is contained in:
@@ -100,7 +100,7 @@ def mapuser(item):
|
||||
|
||||
|
||||
def mapQuestion(item):
|
||||
tags = ['Id', 'CreationDate', 'Body', 'Title', 'OwnerUserId', 'OwnerDisplayName']
|
||||
tags = ['Id', 'CreationDate', 'Body', 'Title', 'OwnerUserId', 'OwnerDisplayName', 'Score']
|
||||
datetags = ['CreationDate']
|
||||
question = {tag: getTag(item, tag) for tag in tags}
|
||||
for tag in datetags:
|
||||
@@ -110,7 +110,7 @@ def mapQuestion(item):
|
||||
|
||||
|
||||
def mapAnswer(item):
|
||||
tags = ['Id', 'ParentId', 'CreationDate', 'Body', 'OwnerUserId']
|
||||
tags = ['Id', 'ParentId', 'CreationDate', 'Body', 'OwnerUserId', 'Score']
|
||||
datetags = ['CreationDate']
|
||||
answer = {tag: getTag(item, tag) for tag in tags}
|
||||
for tag in datetags:
|
||||
|
||||
Reference in New Issue
Block a user