Python3 client for the arXiv API.
Install package arxiv_client
from PyPI.
This differs from the pre-existing arxiv.py project in that it further abstracts away the arXiv API so you do not need to learn to construct query strings. The overall goal is to enable users to skip reading the API docs entirely.
- Simple structured queries
- Comprehensive entity models, with documentation
- For example, see the Category enum for arXiv's category taxonomy
- Fully type annotated
import arxiv_client as arx
client = arx.Client()
articles = client.rss_by_subject(arx.Subject.COMPUTER_SCIENCE)
import arxiv_client as arx
categories = [arx.Category.CS_AI, arx.Category.CS_CL, arx.Category.CS_IR]
client = arx.Client()
articles = client.search(arx.Query(keywords=["llm"], categories=categories, max_results=10))
for article in articles:
print(article)
When using the structured Query
fields, multiple values within a single field are combined using OR
,
and multiple fields are combined using AND
.
The Query
object accepts the following field filters:
keywords
: terms across all fieldstitle_keywords
: terms in the article titleauthor_names
: names in the author listcategories
: arXiv subject categoriesabstract_keywords
: terms in the article abstractcomment_keywords
: terms in the author provided commentarticle_ids
: arXiv article IDscustom_params
: custom query string
Query(keywords=["llm"], categories=[Category.CS_AI, Category.CS_IR], max_results=5)
# Query(
# keywords=['llm'],
# title_keywords=[],
# author_names=[],
# categories=[<Category.CS_AI: 'cs.AI'>, <Category.CS_IR: 'cs.IR'>],
# abstract_keywords=[],
# comment_keywords=[],
# article_ids=[],
# custom_params=None,
# sort_criterion=SortCriterion(sort_by=<SortBy.LAST_UPDATED_DATE: 'lastUpdatedDate'>, sort_order=<SortOrder.DESC: 'descending'>),
# start=0,
# max_results=5
# )
Results in the following query logic:
("llm") in any field AND (cs.AI OR cs.IR) in the categories
See the Query class for more information.
If the provided simple query logic is insufficient, the Query
object takes a self-built query string through the custom_params
attribute. You do not need to URL encode this value.
See arXiv Query Construction for more information on building your own queries.
custom = f"cat:{Category.CS_AI.value} ANDNOT cat:{Category.CS_RO.value}"
Query(keywords=["paged attention", "attention window"], custom_params=custom)
# Query(
# keywords=['paged attention', 'attention window'],
# title_keywords=[],
# author_names=[],
# categories=[],
# abstract_keywords=[],
# comment_keywords=[],
# article_ids=[],
# custom_params='cat:cs.AI ANDNOT cat:cs.RO',
# sort_criterion=SortCriterion(sort_by=<SortBy.LAST_UPDATED_DATE: 'lastUpdatedDate'>, sort_order=<SortOrder.DESC: 'descending'>),
# start=0,
# max_results=10
# )
Results in the following query logic:
("paged attention" OR "attention window") in any field AND (cs.AI AND NOT cs.RO) in the categories
Equivalent query string:
(all:"paged attention" OR all:"attention window") AND (cat:cs.AI ANDNOT cat:cs.RO)
The arXiv search API is unreliable, especially for large queries.
The API will sometimes return incomplete results or return no entries, although the response is valid. See this GitHub issue for discussion on the topic.
If you are encountering this problem, some things that may help include:
- Reduce the page size;
100
seems to have a relatively high success rate - Increase paging retry and delay parameters
- Break up large queries into smaller queries
Retries often help with the issue, but are sometimes insufficient. If you need more reliable access to large query results, consider looking into the arXiv Bulk Data Access options.
This uses hatch for project management.