python PDFKIT wkhtml2pdf: попытка напечатать переводы веб-страниц google translate с помощью сценария powershell - PullRequest
0 голосов
/ 13 апреля 2020

Моя идея выглядит просто:

  1. Файл с $ (префикс google translate) + $ url на строку
  2. Скрипт Power Shell, который запускает этот код для каждой строки:
     ForEach ($url in Get-Content $textfile) {
      wkhtmltopdf.exe -l --no-stop-slow-scripts --minimum-font-size 12 --load-error-handling ignore --javascript-delay 25000 "$url" "$path$i$ext"
      $script:i++
 }

Я получаю такой результат: PDF сгенерирован

Так же это ошибки на консоли:

Loading pages (1/6)
Warning: SSL error ignored
Warning: SSL error ignored
Warning: SSL error ignored
Warning: SSL error ignored
Warning: SSL error ignored
Warning: SSL error ignored
QFont::setPixelSize: Pixel size <= 0 (0)                     ] 50%
Warning: Failed to load https://panel.ondestek.com/client/client.js?s=d35164ea-2122-4654-967e-ddf61b4ee4b2 (ignore)
Counting pages (2/6)
Warning: Received createRequest signal on a disposed ResourceObject's NetworkAccessManager. This might be an indication of an iframe taking too long to load.
Resolving links (4/6)
Loading headers and footers (5/6)
Printing pages (6/6)
Done
Error: Failed to load about:blank, with network status code 301 and http status code 0 - Protocol "about" is unknown
Warning: Received createRequest signal on a disposed ResourceObject's NetworkAccessManager. This might be an indication of an iframe taking too long to load.
Warning: Received createRequest signal on a disposed ResourceObject's NetworkAccessManager. This might be an indication of an iframe taking too long to load.

Так если кто-то уже нашел это дело, я буду благодарен.

Большое спасибо.

...