We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70669e3 commit c24717fCopy full SHA for c24717f
README.md
@@ -67,6 +67,16 @@ for result in arxiv.Client().results(search):
67
print(result.title)
68
```
69
70
+Use the `query` syntax documented in the [arXiv API User Manual](https://arxiv.org/help/api/user-manual#query_details):
71
+
72
+```python
73
+import arxiv
74
75
+search = arxiv.Search(query = "au:del_maestro AND ti:checkerboard")
76
+first_result = next(arxiv.Client().results(search))
77
+print(first_result)
78
+```
79
80
Fetch and print the title of the paper with ID "1605.08386v1:"
81
82
```python
0 commit comments