|
|
3 týždňov pred | |
|---|---|---|
| .. | ||
| node_modules | 3 týždňov pred | |
| src | 3 týždňov pred | |
| .eslintignore | 3 týždňov pred | |
| .eslintrc.json | 3 týždňov pred | |
| LICENSE | 3 týždňov pred | |
| README.md | 3 týždňov pred | |
| index.js | 3 týždňov pred | |
| jest.config.js | 3 týždňov pred | |
| package.json | 3 týždňov pred | |
A Javascript wrapper of arxiv api.
npm i arxiv-api
const arxiv = require('arxiv-api');
const papers = await arxiv.search({
searchQueryParams: [
{
include: [{name: 'RNN'}, {name: 'Deep learning'}],
exclude: [{name: 'LSTM'}],
},
{
include: [{name: 'GAN'}],
},
],
start: 0,
maxResults: 10,
});
console.log(papers);
const arxiv = require('arxiv-api');
const papers = arxiv
.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));
Elior Avraham – elior.av@gmail.com