Filemaker Pro to Zotero?
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
Does Python yield a file that is .ris?
I believe the next step would be to get the individual source data fields into the same dataset as the notes, date created, and tags fields. Then export as xlsx. Then Python can translate that dataset into a .ris format file for import to Zotero. What am I missing here? Thank you!
In it's easiest form it would look like
"TY - " & datatype & "¶" &
"AU - " & author & "¶" &
"T1 - " & Title &
and so forth. Depending on how your data is structured, how good your data types match with the standard etc. this can become pretty complex, but in the end it is just a text to produce based on your data and the RIS specification.
For starters I would export some records from Zotero to RIS so you see what goes where, then in Filemaker you use the data viewer to create your formula. Just copy the output and use Zoteros "import from clipboard" to test.