urschrei / pyzotero

Pyzotero: a Python client for the Zotero API
https://pyzotero.readthedocs.org
Other
908 stars 99 forks source link

everything doesn't persist "since" query item across requests #104

Closed paregorios closed 5 years ago

paregorios commented 5 years ago

General

Platform: OSX Python version: 3.7.4 Pyzotero version: 1.4.6

Problem description

If possible, paste the full traceback in a code block below, and fill in the summary

Debug logging DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?since=10000&format=json&limit=100 HTTP/1.1" 200 40653 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=100 HTTP/1.1" 200 40649 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=200 HTTP/1.1" 200 36648 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=300 HTTP/1.1" 200 41131 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=400 HTTP/1.1" 200 31584 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=500 HTTP/1.1" 200 35509 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=600 HTTP/1.1" 200 28451 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=700 HTTP/1.1" 200 27701 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=800 HTTP/1.1" 200 30169 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443 DEBUG:urllib3.connectionpool:https://api.zotero.org:443 "GET /groups/2533/items/top?limit=100&start=900 HTTP/1.1" 200 25418 DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.zotero.org:443
urschrei commented 5 years ago

Oh, that's not right. I'll take a look!

urschrei commented 5 years ago

It was an error on the Zotero API side, now fixed!

paregorios commented 5 years ago

Confirmed. Now works for me. Thanks.