er
er
@Mattwmaster58 it seems that this problem has been solved and waits to be merged - https://github.com/pyppeteer/pyppeteer/pull/258
You can check tab (page) count with `len(await browser.pages)` and you can access each page and its url. ```python pages = await browser.pages() for p in pages: print (p.url) ```...
Any update on this?
> Yes can confirm also from my side. In my experience SMTP is very unreliable, are there any other methods that can be used for Gmail ? Did quick research...
Encountered same error and downgrade (new env) worked
Had the same problem. Ended up creating worker in Cloudflare dashboard and then initialising locally. 1. ```npm install -g wrangler``` 2. ```wrangler login``` 3. ```wrangler init --from-dash your-random-worker-name``` This creates...
Quick googling gave me this link - https://pjreddie.com/media/files/yolov3.weights Haven't tested it yet.
You can increase limit. I think max was 500. And then you have to write an iterator which goes over the pages. Quick example: ```python r = client.get_all_deals_with_filter({"limit" :500,}) #...
Installed 1.36 with pip and there was no conflict with greenlet==2.02. `Successfully installed greenlet-2.0.2 playwright-1.36.0` pip installs arm64 version - `Downloading playwright-1.36.0-py3-none-macosx_11_0_arm64.whl`. Said that, conda support would be nice.
I ended up using Phantomjs and approach mentioned by [13steinj ](https://github.com/niklasb/dryscrape/issues/41#issuecomment-168262990). p.s. There is a bug in his wrapper. get function is missing self. The correct version is _get(self, url)_.