I would like to use PyQuery
for extract information from a site that requires authentication.
I can access the site "manually" and then see the resulting cookie in Firefox's
Tools > Web Developer > Storage Inspector.
Can I somehow use this cookie in conjunction with PyQuery
?
This should (hopefully) save me from reverse-engineering the authentication process (which apparently redirects to Shibbolet
). I am imagining a combination of exporting the cookie from Firefox and then using it when initializing PyQuery
.