scrape_recent_category_papers
Retrieve the latest arXiv papers from a specified category by scraping the 'recent' page, enabling quick access to up-to-date research content.
Instructions
[크롤링] 특정 카테고리의 'recent' 페이지를 스크랩하여 최신 논문 목록을 가져옵니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | ||
max_results | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"title": "Category",
"type": "string"
},
"max_results": {
"default": 10,
"title": "Max Results",
"type": "integer"
}
},
"required": [
"category"
],
"title": "scrape_recent_category_papersArguments",
"type": "object"
}