I am trying to create a web page that incorporates Paperpile by displaying the publications automatically. I want the web page to display all of the publications and have it update if a publication is added to the repository. The best way I have come up with is to use the BibTeX file that is synced to google drive while also linking each publication to its pdf file. Is there any other way that is better? There isn’t currently a Paperpile public API but has anyone done anything like this before.
1 Like
I am also interested in doing this!
Using the BibTeX file synced to Google Drive is probably the most straightforward option right now, especially since there’s no official Paperpile API yet.
You could write a script (Python, JavaScript, etc.) to parse the .bib
file and generate HTML for your publications list. For auto-updating, just make sure your script pulls the latest .bib
file from Drive periodically or when the page builds (if you’re using something like a static site generator).