简单python项目
1、下载需要的pip包,因为我们只上传代码,环境的事交给阿里。
pip install -t . requests
效果:
2、新建index主文件,和hander函数,如上图。
3、新建配置文件,配置好里面的handler即可。
ROSTemplateFormatVersion: '2015-09-01'
Transform: 'Aliyun::Serverless-2018-04-03'
Resources:
FunDemo:
Type: 'Aliyun::Serverless::Service'
pythondemo:
Type: 'Aliyun::Serverless::Function'
Properties:
Handler: index.handler
Runtime: python3
CodeUri: './'
4、上传并设置好触发器
上传
设置触发器
5、然后点击执行,查看是否执行成功即可。