File size: 592 Bytes
6431a8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
from typing import List, Dict
from appsearch import AppSearchClient
def get_us_speeches() -> List[Dict]:
appsearch = AppSearchClient()
us_speeches = appsearch.list_existing_docs("us-speeches")
for items in us_speeches:
if "_meta" in items:
del items["_meta"]
us_speeches_dict = [
{
'content': speech["text"],
'meta': {'filename': speech["filename"], 'speaker': speech["speaker"], 'date': speech["date"],
'url': speech["url"]}
} for speech in us_speeches
]
return us_speeches_dict
|