Keep updating CSV export
Hello,
Is it possible to keep the CSV export updated as for Better Bibtex?
Is there a way to automate the CSV export when there is some changes in Zotero library?
Thanks
Is it possible to keep the CSV export updated as for Better Bibtex?
Is there a way to automate the CSV export when there is some changes in Zotero library?
Thanks
How can I do that with the server API please?
from pyzotero import zotero
zot = zotero.Zotero('library_id', 'library_type', 'api_key')
zot.add_parameters(limit=5, sort='dateAdded')
items = zot.top()
for item in items:
print('Item: %s | Key: %s | Date added: %s' % (item['data']['itemType'], item['data']['key'], item['data']['dateAdded']))
But is there a way to return items on a specific date (without iterating and compare date-by-date)?
But it is not like a SQL request where we can filter items between two dates, isn't it? I have to sort by date added as I did and then use an iterator to find the next item and check if its date added belongs to the slot of the two dates, right?
?since=
andLast-Modified-Version
.https://www.zotero.org/support/dev/web_api/v3/syncing