Quote:
Originally Posted by kovidgoyal
parse_section not parse_index and there will be no date there already, you will have to search for it in the dtructure parse_section is parsing.
|
I found this:
def parse_section(raw_html):
data = extract_json(raw_html)['content-feed']
def text(e):
if not e:
return ''
return e.get('basic') or e.get('native', '')
but I have no idea how to modify per your suggestion.