arxiv-tools
Tools for arXiv API.
Quick Start
Installation
To start using arxiv-tools, just add it to your project's dependencies in the Cargo.toml.
> cargo
Then, import it in your program.
use ArXiv;
Usage
Search by Title
use ;
async
Fetch by arXiv ID
use ArXiv;
async
See the Documents for more details.
Release Notes
- Added
id_listsupport for querying papers by arXiv IDs. - Added
ArXiv::from_id_list()constructor. - Added
ArXiv::id_list()method. - Fixed API endpoint to use HTTPS.
- Fixed a bug: fixed the query parameter
submittedDate.
- Added optional parameters such as
start,max_results,sortBy,sortOrder. - Updated documents.