适用于 GAE 的 Python 无头浏览器

2023-12-24

我正在尝试将 Angular.js 客户端与 Google Appengine 上的 webapp2 一起使用。

为了解决 SEO 问题,我们的想法是使用无头浏览器在服务器端运行 javascript,并将生成的 html 提供给爬虫。

有没有在谷歌应用程序引擎上运行的Python无头浏览器?


现在可以使用自定义运行时在 App Engine Flex 上完成此操作,因此我添加了这个答案,因为这个问题是 Google 中首先弹出的问题。

我将此自定义运行时基于我的其他 GAE flex 微服务,该微服务使用预构建的 python 运行时

项目结构:

webdrivers/
- geckodriver
app.yaml
Dockerfile
main.py
requirements.txt

应用程序.yaml:

service: my-app-engine-service-name
runtime: custom
env: flex
entrypoint: gunicorn -b :$PORT main:app --timeout 180

Dockerfile:

FROM gcr.io/google-appengine/python
RUN apt-get update
RUN apt-get install -y xvfb
RUN apt-get install -y firefox
LABEL python_version=python
RUN virtualenv --no-download /env -p python
ENV VIRTUAL_ENV /env
ENV PATH /env/bin:$PATH
ADD requirements.txt /app/
RUN pip install -r requirements.txt
ADD . /app/
CMD exec gunicorn -b :$PORT main:app --timeout 180

要求.txt:

Flask==0.12.2
gunicorn==19.7.1
selenium==3.13.0
pyvirtualdisplay==0.2.1

main.py

import os
import traceback

from flask import Flask, jsonify, Response
from selenium import webdriver
from pyvirtualdisplay import Display

app = Flask(__name__)

# Add the webdrivers to the path
os.environ['PATH'] += ':'+os.path.dirname(os.path.realpath(__file__))+"/webdrivers"

@app.route('/')
def hello():
    return 'Hello!!'

@app.route('/test/', methods=['GET'])
def go_headless():
    try:
        display = Display(visible=0, size=(1024, 768))
        display.start()
        d = webdriver.Firefox()
        d.get("http://www.python.org")    
        page_source = d.page_source.encode("utf-8")
        d.close()
        display.stop()
        return jsonify({'success': True, "result": page_source[:500]})
    except Exception as e:
        print traceback.format_exc()
        return jsonify({'success': False, 'msg': str(e)})

if __name__ == '__main__':
    app.run(host='127.0.0.1', port=8080, debug=True)

从这里下载 geckodriver(linux 64):

https://github.com/mozilla/geckodriver/releases https://github.com/mozilla/geckodriver/releases

其他注意事项:

  • 请注意您使用的 geckodriver、firefox 和 selenium 的版本,因为它可能是 finnickey,从而出现此错误WebDriverException: Message: Can't load the profile. Possible firefox version mismatch. You must use GeckoDriver instead for Firefox 48+. Profile Dir: /tmp/tmp 48P If you specified a log_file in the FirefoxBinary constructor, check it for details.
  • 除非您使用旧版 geckodriver/firefox,否则不要设置DesiredCapabilities().FIREFOX["marionette"] = False https://github.com/SeleniumHQ/selenium/issues/5106 https://github.com/SeleniumHQ/selenium/issues/5106
  • display = Display(visible=0, size=(1024, 768))需要修复此错误:如何修复 Selenium WebDriverException:浏览器在我们连接之前似乎已退出? https://stackoverflow.com/questions/26070834/how-to-fix-selenium-webdriverexception-the-browser-appears-to-have-exited-befor

本地测试:

docker build . -t my-docker-image-tag
docker run -p 8080:8080 --name=my-docker-container-name my-docker-image-tag

部署到应用程序引擎:

gcloud app deploy app.yaml --version dev --project my-app-engine-project-id
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

适用于 GAE 的 Python 无头浏览器 的相关文章

随机推荐