Load descriptions correctly
This commit is contained in:
parent
b1c38d291c
commit
7853610a20
2 changed files with 3 additions and 4 deletions
|
@ -70,7 +70,7 @@ class Connector(AbstractConnector):
|
|||
# flatten the data so that images, uri, and claims are on the same level
|
||||
return {
|
||||
**data.get("claims", {}),
|
||||
**{k: data.get(k) for k in ["uri", "image", "labels"]},
|
||||
**{k: data.get(k) for k in ["uri", "image", "labels", "sitelinks"]},
|
||||
}
|
||||
|
||||
def parse_search_data(self, data):
|
||||
|
@ -193,7 +193,7 @@ class Connector(AbstractConnector):
|
|||
return results
|
||||
|
||||
def get_description(self, links):
|
||||
"""grab an extracted except from wikipedia"""
|
||||
"""grab an extracted excerpt from wikipedia"""
|
||||
link = links.get("enwiki")
|
||||
if not link:
|
||||
return ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue