简单python项目

1、下载需要的pip包,因为我们只上传代码,环境的事交给阿里。

  1. pip install -t . requests

效果:

image.png

2、新建index主文件,和hander函数,如上图。

3、新建配置文件,配置好里面的handler即可。

  1. ROSTemplateFormatVersion: '2015-09-01'
  2. Transform: 'Aliyun::Serverless-2018-04-03'
  3. Resources:
  4. FunDemo:
  5. Type: 'Aliyun::Serverless::Service'
  6. pythondemo:
  7. Type: 'Aliyun::Serverless::Function'
  8. Properties:
  9. Handler: index.handler
  10. Runtime: python3
  11. CodeUri: './'

4、上传并设置好触发器

上传

image.png

设置触发器

image.png

5、然后点击执行,查看是否执行成功即可。