0.0.9 • Published 10 months ago

arxiv-client v0.0.9

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

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago