0.0.9 • Published 9 months ago

arxiv-client v0.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Arxiv Client

A TypeScript client library for interacting with the arXiv API

Installation

npm install arxiv-client

Usage

Example usage:

import arxivClient, { abstract, and, not, or, title, category } from "arxiv-client";

const articles = await arxivClient.query(
    and(category("cs.AI"), title("game"), abstract("reinforcement learning")),
    not(or(title("deep"), title("Human"))),
)
    .start(0)
    .maxResults(20)
    .sortBy('lastUpdatedDate')
    .sortOrder('ascending')
    .execute();
console.dir(articles, {
    depth: null
});
0.0.9

9 months ago

0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago