download_paper_pdf
Download PDFs of research papers from arXiv using a direct URL. Specify the save directory and customize the filename for organized storage of academic resources.
Instructions
Download a paper's PDF from ArXiv.
:param pdf_url: The PDF URL from search results :param save_path: Directory to save the PDF (default: current directory) :param filename: Custom filename for the PDF (default: extracted from URL)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | ||
pdf_url | Yes | ||
save_path | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filename"
},
"pdf_url": {
"title": "Pdf Url",
"type": "string"
},
"save_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Save Path"
}
},
"required": [
"pdf_url"
],
"type": "object"
}