Reputation: 4038
This article https://cloud.google.com/appengine/docs/standard/nodejs/using-headless-chrome-with-puppeteer says that I now can use headless chrome in GAE Standard (Nodejs). However, current gae project is in Python.
Can I run headless chrome in GAE Standard Python?
Or can my gae app developed in both Python and Nodejs?
Thanks
Upvotes: 1
Views: 280
Reputation: 39834
You cannot run headless chrome in the python 2.7 GAE standard due to its sandbox limitations.
I'm not sure if the newly released 2nd generation standard environment (only supporting python 3.7), which has fewer restrictions, would allow you to do so - I didn't play with it yet.
But yes, you can mix any combination of languages and GAE environments in your app, as separate services, see Microservice on GAE+ Mix of Standard and Flexible GAE Services
Upvotes: 1