Using google cloud function to spawn a python script(使用谷歌云函数生成 python 脚本)
问题描述
我需要执行一些 python 机器学习代码,并希望从 Google Cloud Function 中的节点进程执行它.
I need to execute some python machine learning code and was hoping to execute it from a node process within a Google Cloud Function.
我想使用节点,因为我有一些我想在之后运行的 firebase 管理任务.我也有一个我满意的节点部署工作流.
I want to use node because I have some firebase admin tasks I want to run afterwards. I also have a deployment workflow with node that I'm content with.
这可能吗?如果是这样,你能给我举个例子吗?
Is this possible? If so, can you point me to an example?
推荐答案
是的,这是可能的,你可能需要使用 http://www.pyinstaller.org/ 打包python代码.看看我的 python 库,以实际在 python 中编写函数来完成它,或者只是复制粘贴你自己需要做的任何部分:https://github.com/MartinSahlen/cloud-functions-python/
Yes, this would be possible, you probably need to use http://www.pyinstaller.org/ to package the python code. Have a look at my python library for actually writing your functions in python to do it, or just copy paste whatever parts you need to do it yourself: https://github.com/MartinSahlen/cloud-functions-python/
这篇关于使用谷歌云函数生成 python 脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用谷歌云函数生成 python 脚本
基础教程推荐
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
