We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759fc4e commit be22cb0Copy full SHA for be22cb0
main.py
@@ -22,7 +22,8 @@
22
23
def get_zotero_corpus(id:str,key:str) -> list[dict]:
24
zot = zotero.Zotero(id, 'user', key)
25
- collections = {c['key']:c for c in zot.collections()}
+ collections = zot.everything(zot.collections())
26
+ collections = {c['key']:c for c in collections}
27
corpus = zot.everything(zot.items(itemType='conferencePaper || journalArticle || preprint'))
28
corpus = [c for c in corpus if c['data']['abstractNote'] != '']
29
def get_collection_path(col_key:str) -> str:
0 commit comments