3a05chatgpt commited on
Commit
cad2ef8
Β·
verified Β·
1 Parent(s): 4d9a0e6

Delete papersearch.py

Browse files
Files changed (1) hide show
  1. papersearch.py +0 -20
papersearch.py DELETED
@@ -1,20 +0,0 @@
1
- import arxiv
2
-
3
- def θ«–ζ–‡ζœε°‹(ι—œι΅ε­—, max_results=10, start_year=2000, end_year=2025):
4
- search = arxiv.Search(
5
- query=ι—œι΅ε­—,
6
- max_results=max_results,
7
- sort_by=arxiv.SortCriterion.SubmittedDate
8
- )
9
- papers = []
10
- for result in search.results():
11
- if not (start_year <= result.published.year <= end_year):
12
- continue
13
- papers.append({
14
- "ζ¨™ι‘Œ": result.title,
15
- "δ½œθ€…": ", ".join([a.name for a in result.authors]),
16
- "發葨ζ—₯期": str(result.published)[:10],
17
- "ζ‘˜θ¦": result.summary,
18
- "arXiv 連硐": result.entry_id
19
- })
20
- return papers