pub async fn fetch_arxivs(query: ArxivQuery) -> Result<Vec<Arxiv>>Expand description
Fetch the paper information using the arXiv API.
ยงExample
use arxiv::{fetch_arxivs, query};
let query = query!(search_query = "cat:cs.CL");
// arxivs type is Vec<Arxiv>
let arxivs = fetch_arxivs(query).await?;