We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8bc984 commit 8185d0aCopy full SHA for 8185d0a
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changes
2
3
+## [unreleased]
4
+
5
+- Adapt the default page size for API calls to the new limit for unauthenticated requests.
6
7
8
## [2.2.0] - 2025-11-17
9
10
- Make all metadata from Zenodo available from a `Record` instance.
src/cldfzenodo/api.py
@@ -75,7 +75,7 @@ class Api:
75
__base_url__ = "https://zenodo.org/api/"
76
__communities__ = {} # We cash community identifiers.
77
78
- def __init__(self, page_size=100):
+ def __init__(self, page_size=25):
79
self.page_size = page_size
80
81
def __call__(self,
0 commit comments