Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

modernized-js/arXiv-api

Repository files navigation

npm version

@modernized/arxiv-api

A Javascript wrapper for the arXiv API.

Getting Started

Installation

npm i @modernized/arxiv-api
# or
yarn add @modernized/arxiv-api

Usage example

Using async/await

import search from "@modernized/arxiv-api";
const papers = await search({
	searchQueryParams: [
		{
			include: [{name: 'RNN'}, {name: 'Deep learning'}],
			exclude: [{name: 'LSTM'}],
		},
		{
			include: [{name: 'GAN'}],
		},
	],
	start: 0,
	maxResults: 10,
});
console.log(papers);

Using Promise

import search from "@modernized/arxiv-api";
const papers = search({
		searchQueryParams: [
			{
				include: [{name: 'RNN'}, {name: 'Deep learning'}],
				exclude: [{name: 'LSTM'}],
			},
			{
				include: [{name: 'GAN'}],
			},
		],
		start: 0,
		maxResults: 10,
	})
	.then((papers) => console.log(papers))
	.catch((error) => console.log(error));

Documentation

search - ARXIV-API.search({searchQueryParams, sortBy, sortOrder, start = 0, maxResults = 10})

  • searchQueryParams [{include, exclude}] - An array of search temp. Every object in the array represent different search, and the result will be a logical OR between the objects.
    • include [{name, prefix}] - Which tags to include in the search. The result will be a logical AND between the objects.
    • exclude [{name, prefix}] - Which tags to exclude from the search. The result will be a logical AND NOT between the objects. the name and the prefix are the same as in the include fiels.
  • start - The index of the first returned result.
  • maxResults - The number of results returned by the query.
  • sortBy - Can be "relevance", "lastUpdatedDate", "submittedDate".
  • sortOrder - Can be either "ascending" or "descending".

About

arXiv-api - A Javascript wrapper of arxiv api.

Resources

License

Stars

Watchers

Forks

Packages

Contributors

Languages

  • TypeScript 94.3%
  • JavaScript 5.7%

AltStyle によって変換されたページ (->オリジナル) /