haruna
haruna
https://github.com/eggplants/deepl-cli/issues/17#issuecomment-781751371
Scraping deepl.com with pyppeteer ↓ translatepy
Please take a look: https://github.com/nim-lang/Nim/issues/19966
``` $ pip install . $ ghst -h # or: github-stars-by-topic -h usage: ghst [-h] [-t ID] [-u ID] [-p PASSWORD] [-V] Generate a list of your GitHub stars by...
# Description I replaced optparse with argparse and refactored some process to check arguments. Breaking change: Status code 4 no longer occurs because argparse checks whether an argument is passed....
## User Story `query_gsquery.py` uses optparse, which was deprecated in Python 3.2 and will be removed from the stdlib in the near future. So I suggest to replace it with...
To make testing more easily and measure coverage with pytest-cov, we have to edit demo.py for pytest.
**Feature** I would like to insert `from typing import Union` when generated stub code by stubgen includes `Union`. **Pitch** ref: #12920 Now: ```shellsession # Python 3.10.4, mypy 0.960 $ cat...
To set default timeout to page object, puppeteer has [`page.setDefaultTimeout`](https://github.com/puppeteer/puppeteer/pull/3854) and [`page.setDefaultNavigationTimeout`](https://github.com/puppeteer/puppeteer/pull/3969). `page.setDefaultTimeout` affects: - `page.waitFor(selectorOrFunctionOrTimeout[, options[, ...args]])` - `page.waitForFunction(pageFunction[, options[, ...args]])` - `page.waitForRequest(urlOrPredicate[, options])` - `page.waitForResponse(urlOrPredicate[, options])` - `page.waitForSelector(selector[,...
websockets 10.2, released at last month, raises `DeprecationWarning` when using `websockets.legacy.client.connect`'s parameter `loop`. https://github.com/aaugustin/websockets/blame/a7b9860538c50e58a06f751b5f9eecde575fae2a/src/websockets/legacy/client.py#L480 https://github.com/pyppeteer/pyppeteer/blob/0fd15a7c4b2d3aeaaf6da65da9033c150de0d3cb/pyppeteer/connection.py#L44