0.0.9 • Published 1 year ago

arxiv-client v0.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago