pyppeteer学习1

最近在学习用pyppeteer来爬东西,安装后第一次运行后会下载chromium,这个被墙了的,基本卡死,可以自己下载对应的压缩包,然后  await launch( executablePath='')指定路径,一定要对应的chromium不然会出现很多未知错误。。。 

查看版本号 pyppeteer.__chromium_revision__   

'https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/版本号/chrome-win32.zip

以下是最新版本对应

 

  • 'linux': 'https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/575458/chrome-linux.zip'
  • 'mac': 'https://storage.googleapis.com/chromium-browser-snapshots/Mac/575458/chrome-mac.zip'
  • 'win32': 'https://storage.googleapis.com/chromium-browser-snapshots/Win/575458/chrome-win32.zip'
  • 'win64': 'https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/575458/chrome-win32.zip'

转载于:https://www.cnblogs.com/xxxuxin/p/11406888.html

你可能感兴趣的:(pyppeteer学习1)