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 脚本
基础教程推荐
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
