pyzotero 1.6.0__py3-none-any.whl → 1.6.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- _version.py +2 -2
- pyzotero/zotero.py +9 -6
- {pyzotero-1.6.0.dist-info → pyzotero-1.6.1.dist-info}/METADATA +1 -1
- pyzotero-1.6.1.dist-info/RECORD +10 -0
- pyzotero-1.6.0.dist-info/RECORD +0 -10
- {pyzotero-1.6.0.dist-info → pyzotero-1.6.1.dist-info}/AUTHORS +0 -0
- {pyzotero-1.6.0.dist-info → pyzotero-1.6.1.dist-info}/LICENSE.md +0 -0
- {pyzotero-1.6.0.dist-info → pyzotero-1.6.1.dist-info}/WHEEL +0 -0
- {pyzotero-1.6.0.dist-info → pyzotero-1.6.1.dist-info}/top_level.txt +0 -0
_version.py
CHANGED
pyzotero/zotero.py
CHANGED
|
@@ -338,6 +338,7 @@ class Zotero:
|
|
|
338
338
|
return False
|
|
339
339
|
|
|
340
340
|
def _striplocal(self, url):
|
|
341
|
+
"""We need to remve the leading "/api" substring from urls if we're running in local mode"""
|
|
341
342
|
if self.local:
|
|
342
343
|
parsed = urlparse(url)
|
|
343
344
|
purepath = PurePosixPath(unquote(parsed.path))
|
|
@@ -432,14 +433,15 @@ class Zotero:
|
|
|
432
433
|
# ensure that we wait if there's an active backoff
|
|
433
434
|
self._check_backoff()
|
|
434
435
|
# don't set locale if the url already contains it
|
|
435
|
-
if
|
|
436
|
-
|
|
436
|
+
# we always add a locale if it's a "standalone" or first call
|
|
437
|
+
needs_locale = not self.links or not self._check_for_component(
|
|
438
|
+
self.links.get("next"), "locale"
|
|
439
|
+
)
|
|
440
|
+
if needs_locale:
|
|
441
|
+
if params:
|
|
437
442
|
params["locale"] = self.locale
|
|
438
|
-
if not params and self.links:
|
|
439
|
-
if not self._check_for_component(self.links.get("next"), "locale"):
|
|
440
|
-
params = {"locale": self.locale}
|
|
441
443
|
else:
|
|
442
|
-
params = {}
|
|
444
|
+
params = {"locale": self.locale}
|
|
443
445
|
self.request = requests.get(
|
|
444
446
|
url=full_url, headers=self.default_headers(), params=params
|
|
445
447
|
)
|
|
@@ -877,6 +879,7 @@ class Zotero:
|
|
|
877
879
|
"""Return the result of the call to the URL in the 'Next' link"""
|
|
878
880
|
if n := self.links.get("next"):
|
|
879
881
|
newurl = self._striplocal(n)
|
|
882
|
+
print(newurl)
|
|
880
883
|
return newurl
|
|
881
884
|
return
|
|
882
885
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
_version.py,sha256=edFVVa8HpVPfLqL2y6CKtViSqJREfmXxInA-HCy-134,411
|
|
2
|
+
pyzotero/__init__.py,sha256=5QI4Jou9L-YJAf_oN9TgRXVKgt_Unc39oADo2Ch8bLI,243
|
|
3
|
+
pyzotero/zotero.py,sha256=Qk3vuJxv4rbD_Q0sg_8nc8QXVAboJ9_eZWrLuJLkW_4,76313
|
|
4
|
+
pyzotero/zotero_errors.py,sha256=UPhAmf2K05cnoeIl2wjufWQedepg7vBKb-ShU0TdlL4,2582
|
|
5
|
+
pyzotero-1.6.1.dist-info/AUTHORS,sha256=ZMicxg7lRScOYbxzMPznlzMbmrFIUIHwg-NvljEMbRQ,110
|
|
6
|
+
pyzotero-1.6.1.dist-info/LICENSE.md,sha256=bhy1CPMj1zWffD9YifFmSeBzPylsrhb1qP8OCEx5Etw,1550
|
|
7
|
+
pyzotero-1.6.1.dist-info/METADATA,sha256=TCxweUVtZbjMDFDrFtZMDzKCFm4j8VMNkwzbJ2kJUZ0,7204
|
|
8
|
+
pyzotero-1.6.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
9
|
+
pyzotero-1.6.1.dist-info/top_level.txt,sha256=BOPNkPk5VtNDCy_li7Xftx6k0zG8STGxh-KgckcxLEw,18
|
|
10
|
+
pyzotero-1.6.1.dist-info/RECORD,,
|
pyzotero-1.6.0.dist-info/RECORD
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
_version.py,sha256=Ry70pc5l-IBhT9gahlkNwZPp4g0CzVEWqsat9H-UASY,411
|
|
2
|
-
pyzotero/__init__.py,sha256=5QI4Jou9L-YJAf_oN9TgRXVKgt_Unc39oADo2Ch8bLI,243
|
|
3
|
-
pyzotero/zotero.py,sha256=qij4_ihYYzZI-18_CPZD2sexqs0Iya1E61dcaSZpmZo,76201
|
|
4
|
-
pyzotero/zotero_errors.py,sha256=UPhAmf2K05cnoeIl2wjufWQedepg7vBKb-ShU0TdlL4,2582
|
|
5
|
-
pyzotero-1.6.0.dist-info/AUTHORS,sha256=ZMicxg7lRScOYbxzMPznlzMbmrFIUIHwg-NvljEMbRQ,110
|
|
6
|
-
pyzotero-1.6.0.dist-info/LICENSE.md,sha256=bhy1CPMj1zWffD9YifFmSeBzPylsrhb1qP8OCEx5Etw,1550
|
|
7
|
-
pyzotero-1.6.0.dist-info/METADATA,sha256=vSYfI-tzsTaMafBXfjZFvPqXMrFHjW2EHB9uAepQHeE,7204
|
|
8
|
-
pyzotero-1.6.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
9
|
-
pyzotero-1.6.0.dist-info/top_level.txt,sha256=BOPNkPk5VtNDCy_li7Xftx6k0zG8STGxh-KgckcxLEw,18
|
|
10
|
-
pyzotero-1.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|