def process_editorial_list(url):
"""
Process a page that contains a list of editorials.
Returns:
- A list of URLs to individual editorial articles.
- The URL to the next editorial list.
"""
content = urllib2.urlopen(url)
tree = html.parse(content)
content.close()
next_edlist = get_next_edlist(tree)
artlist = get_edarticles(tree)
return (artlist, next_edlist)
评论列表
文章目录