-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Base for retrying * Request-Response in puppeteer terms. * Closing contexts after retry * Typos and readme * fix: missing cntx_id * Proper merging from other branch * Readme and extra import * Version update * Defaults * Errback and CloseContextRequest fix * Typo * log warning if close context response status is not 200 --------- Co-authored-by: Max Varlamov <[email protected]>
- Loading branch information
1 parent
9bd72a8
commit ca2ddd9
Showing
6 changed files
with
93 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
from .request import PuppeteerRequest | ||
from .response import * | ||
from .request import PuppeteerRequest, CloseContextRequest | ||
from .response import ( | ||
PuppeteerResponse, | ||
PuppeteerHtmlResponse, | ||
PuppeteerScreenshotResponse, | ||
PuppeteerRecaptchaSolverResponse, | ||
PuppeteerJsonResponse, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters