ArXiv Skill
Search and download scientific papers from arXiv.org - the largest free distribution of scientific preprints.
What it does
- - Search papers by keywords, titles, abstracts
- Download PDFs directly
- Filter by category (physics, cs, math, etc.)
- Get metadata including authors, dates, categories
Installation
CODEBLOCK0
Usage
Search for papers
CODEBLOCK1
Download a paper
CODEBLOCK2
Python API
CODEBLOCK3
Categories
Common arXiv categories:
- -
cs.* - Computer Science - INLINECODE1 - Physics
- INLINECODE2 - Mathematics
- INLINECODE3 - Quantitative Biology
- INLINECODE4 - Quantitative Finance
- INLINECODE5 - Statistics
Examples
- - Search for consciousness papers: INLINECODE6
- Find physics papers: INLINECODE7
- Download paper:
arxiv.ps1 -download "1706.03762" (Attention is All You Need)
Notes
- - arXiv is free and open
- Papers are preprints - may not be peer-reviewed
- Great for staying current with research
ArXiv 技能
从 arXiv.org 搜索并下载科学论文——这是最大的免费科学预印本分发平台。
功能
- - 搜索 按关键词、标题、摘要搜索论文
- 下载 直接下载 PDF 文件
- 筛选 按类别(物理、计算机科学、数学等)筛选
- 获取元数据 包括作者、日期、类别等信息
安装
powershell
安装 Python 依赖
pip install arxiv
使用方法
搜索论文
powershell
基础搜索
.\arxiv.ps1 -Action search -Query 量子计算
设置最大结果数
.\arxiv.ps1 -Action search -Query 机器学习 -MaxResults 10
按类别筛选(物理、计算机科学、数学、定量生物学等)
.\arxiv.ps1 -Action search -Query 神经网络 -Categories cs,stat
下载论文
powershell
通过 arXiv ID 下载
.\arxiv.ps1 -Action download -ArxivId 2310.12345
Python API
python
from arxiv import search, download
搜索
results = search(模拟假说, max_results=5)
for paper in results:
print(f{paper.title} - {paper.pdf_url})
下载
paper.download(/保存路径)
类别
常见的 arXiv 类别:
- - cs. - 计算机科学
- physics. - 物理学
- math. - 数学
- q-bio. - 定量生物学
- q-fin. - 定量金融学
- stat. - 统计学
示例
- - 搜索意识相关论文:arxiv.ps1 -search consciousness -max 5
- 查找物理学论文:arxiv.ps1 -search quantum -cats physics -max 10
- 下载论文:arxiv.ps1 -download 1706.03762(Attention is All You Need)
说明
- - arXiv 是免费开放的
- 论文为预印本——可能未经同行评审
- 非常适合跟踪最新研究进展