module
Version:
v0.0.0-...-8476fb0
Opens a new window with list of versions in this module.
Published: Dec 1, 2024
License: MIT
Opens a new window with license information.
README
¶
Module for interfacing with the arxiv.org metadata API.
ArXiv provides a public API for accessing metadata of scientific papers.
Documentation for the API can be found in the ArXiv API User Manual.
Basic usage:
package main
import (
"github.com/mikethicke/arxiv-go"
)
func main() {
params := meta.SearchParams{
Query: "all:electron",
}
requester := meta.MakeRequester(arxivgo.DefaultConfig)
response, err := meta.Search(requester, params)
if err != nil {
panic(err)
}
for _, entry := range response.Entries {
// Do something
}
nextPage, err := meta.SearchNext(requester, response)
// Do something
}
Directories
¶
cmd
|
|
|
|
Package arxivgo provides a simple interface to the arXiv metadata API.
|
Package arxivgo provides a simple interface to the arXiv metadata API. |
Click to show internal directories.
Click to hide internal directories.