A Julia wrapper to access the arXiv API and create properly formatted .bib file from the search results.
About arXiv API
arXiv.jl constructs the api url,
http://export.arxiv.org/api/{method_name}?{parameters}
and makes an HTTP pull request to get the information and generates the information into a bib file with the proper formatting accepted by most academic journals.
]add arXiv
Load the arXiv.jl Julia package!
using arXiv
A simple request that will search all search all fields for the keyword = "electron".
request("electron")
Keep an updated bib file with all of your arXiv publications!
request("LaBollita"; field=author, max_results=5, filename="my_publications")
If you have any suggestions or thoughts on how to improve our package please submit and issue or create a pull request. We greatly appreciate it.
Thank you to arXiv for use of its open access interoperability.