We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb9e2c commit 5cdbd4dCopy full SHA for 5cdbd4d
ames/harvesters/caltechdata.py
@@ -37,7 +37,7 @@ def get_caltechdata(
37
pages = math.ceil(int(total) / 1000)
38
hits = []
39
records = []
40
- print("Total records: " + str(total))
+ print("Total records " + str(total))
41
for c in progressbar(range(1, pages + 1)):
42
chunkurl = f"{url}{query_string}&size=1000&page={c}"
43
response = requests.get(chunkurl).json()
0 commit comments