Skip to content

Commit

Permalink
fix max results: 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
longxiang-ai committed Dec 7, 2024
1 parent f990a39 commit 1453d6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/arxiv_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def main():
parser = argparse.ArgumentParser(description='arXiv论文爬虫')
parser.add_argument('--citations', action='store_true',
help='是否获取引用数和Semantic Scholar链接')
parser.add_argument('--max-results', type=int, default=30,
parser.add_argument('--max-results', type=int, default=1000,
help='最大获取论文数量')
args = parser.parse_args()

Expand Down

0 comments on commit 1453d6a

Please sign in to comment.