You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since a recent Chrome update, I'm starting to get:
>>> import browser_cookie3 as bc3
>>> bc3.chrome(domain_name="citibikenyc.com")
---------------------------------------------------------------------------
BrowserCookieError Traceback (most recent call last)
Cell In[6], line 1
----> 1 bc3.chrome(domain_name="citibikenyc.com")
File ~/git/scratch/.venv/lib/python3.13/site-packages/browser_cookie3/__init__.py:1160, in chrome(cookie_file, domain_name, key_file)
1156 def chrome(cookie_file=None, domain_name="", key_file=None):
1157 """Returns a cookiejar of the cookies used by Chrome. Optionally pass in a
1158 domain name to only load cookies from the specified domain
1159 """
-> 1160 return Chrome(cookie_file, domain_name, key_file).load()
File ~/git/scratch/.venv/lib/python3.13/site-packages/browser_cookie3/__init__.py:515, in ChromiumBased.load(self)
511 else:
512 expires = (expires_nt_time_epoch / 1000000) - \
513 self.UNIX_TO_NT_EPOCH_OFFSET
--> 515 value = self._decrypt(value, enc_value)
516 c = create_cookie(host, path, secure, expires,
517 name, value, http_only)
518 cj.set_cookie(c)
File ~/git/scratch/.venv/lib/python3.13/site-packages/browser_cookie3/__init__.py:585, in ChromiumBased._decrypt(self, value, encrypted_value)
583 except ValueError:
584 pass
--> 585 raise BrowserCookieError('Unable to get key for cookie decryption')
BrowserCookieError: Unable to get key for cookie decryption
I'm on macOS and Chrome Version 130.0.6723.70 (Official Build) (arm64)
The text was updated successfully, but these errors were encountered:
Since a recent Chrome update, I'm starting to get:
I'm on macOS and Chrome Version 130.0.6723.70 (Official Build) (arm64)
The text was updated successfully, but these errors were encountered: