-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context restoring #27
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # scrapypuppeteer/middleware.py
if request_binding: | ||
# Could not get context, retry | ||
if request.meta.get("__restore_count", 0) < self.n_retry_restoring: | ||
request.meta["__restore_count"] += 1 | ||
return request |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if this situation even possible.
I could not reproduce it, but I added it here.
What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still not sure
Service and Recaptcha middlewares were mostly copied from previous middleware.py file. |
# Conflicts: # README.md # scrapypuppeteer/middleware.py
# Conflicts: # scrapypuppeteer/middleware.py
Description
Implemented new downloader middleware for restoring contexts when they are destroyed.
Added example spider.
Added info about the middleware to README.
Restructured the project to have more than 1 middleware. Changed init.py in the corresponding way to provide backward compatibility.
Type of change
How Has This Been Tested?
I tested the middleware with several spuder on my PC.
Checklist: