Merge pull request #33 from LilHayah/master

commit from Sky! adapt to new ACFun json format
This commit is contained in:
Star Brilliant 2016-05-17 18:52:55 -05:00
commit 7cbba37fba

View File

@ -151,9 +151,11 @@ def ReadCommentsNiconico(f, fontsize):
def ReadCommentsAcfun(f, fontsize): def ReadCommentsAcfun(f, fontsize):
comment_element = json.load(f) #comment_element = json.load(f)
# after load acfun comment json file as python list, flatten the list # after load acfun comment json file as python list, flatten the list
comment_element = [c for sublist in comment_element for c in sublist] #comment_element = [c for sublist in comment_element for c in sublist]
comment_elements = json.load(f)
comment_element = comment_elements[2]
for i, comment in enumerate(comment_element): for i, comment in enumerate(comment_element):
try: try:
p = str(comment['c']).split(',') p = str(comment['c']).split(',')