You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/pages/05-deployment/39-aws-lambda.markdown
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ slug: aws-lambda
4
4
sortorder: 0539
5
5
toc: False
6
6
sidebartitle: AWS Lambda
7
-
meta: AWS Lambda is a serverless compute service that can execute arbitrary Python 2.7 and 3.6 code.
7
+
meta: AWS Lambda is a serverless compute service that can execute arbitrary Python 2.7, 3.6 or 3.7 code.
8
8
9
9
10
10
# AWS Lambda
@@ -32,14 +32,24 @@ has support for both Python 2.7, 3.6 and 3.7.
32
32
33
33
34
34
### Python-specific AWS Lambda resources
35
-
*[Going Serverless with AWS Lambda and API Gateway](http://blog.ryankelly.us/2016/08/07/going-serverless-with-aws-lambda-and-api-gateway.html)
35
+
*[Serverless Slash Commands with Python](https://renzo.lucioni.xyz/serverless-slash-commands-with-python/)
36
+
shows how to use the [Slack](/slack.html) API to build *slash* commands
37
+
that run with an AWS Lambda backend.
36
38
37
39
*[Zappa](https://github.com/Miserlou/Zappa) is a serverless framework
38
40
for deploying Python web applications. It's a really slick project
39
41
and used even by internal AWS developers for their own application
40
42
deployments. Be sure to [read the Zappa blog](https://blog.zappa.io/)
41
43
as well for walkthroughs and new feature announcements.
42
44
45
+
*[How to Setup a Serverless URL Shortener With API Gateway Lambda and DynamoDB on AWS](https://blog.ruanbekker.com/blog/2018/11/30/how-to-setup-a-serverless-url-shortener-with-api-gateway-lambda-and-dynamodb-on-aws/)
46
+
builds a non-trivial URL shortener application as an example Python
47
+
application that runs on Lambda.
48
+
49
+
*[How we built Hamiltix.net for less than $1 a month on AWS](https://blog.badsectorlabs.com/how-we-built-hamiltixnet-for-less-than-1-a-month-on-aws.html)
50
+
walks through setting up a full website that runs on AWS and scales
51
+
with the Lambda free tier to minimize spend despite large traffic spikes.
52
+
43
53
*[Deploying a serverless Flask app to AWS Lambda using Zappa](https://asciinema.org/a/98560)
44
54
provides a screen capture of one developer deploying their
45
55
application to Lambda.
@@ -61,13 +71,25 @@ has support for both Python 2.7, 3.6 and 3.7.
61
71
*[Code Evaluation With AWS Lambda and API Gateway](https://realpython.com/blog/python/code-evaluation-with-aws-lambda-and-api-gateway/)
62
72
shows how to develop a code evaluation API, to execute arbitrary code, with AWS Lambda and API Gateway.
63
73
74
+
*[Crawling thousands of products using AWS Lambda](https://engineering.21buttons.com/crawling-thousands-of-products-using-aws-lambda-80332e259de1)
75
+
gives a real-world example of where using Python, Selenium and
0 commit comments