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/08-web-app-deployment/36-aws-lambda.markdown
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ Lambda is often used as a "serverless" compute architecture, which
21
21
allows developers to upload their Python code instead of spinning and
22
22
configuring servers, deploying their code and scaling based on traffic.
23
23
24
+
<divclass="well see-also">Lambda is an implementation of the <ahref="/serverless.html">serverless</a> concept. Learn how these pieces fit together in the <ahref="/deployment.html">deployment</a> chapter or view the <ahref="/table-of-contents.html">table of contents</a> for all topics.</div>
25
+
24
26
25
27
## Python on AWS Lambda
26
28
Lambda only had support for JavaScript, specifically Node.JS, when it was
@@ -30,9 +32,24 @@ has support for both Python 2.7 and 3.6.
30
32
31
33
32
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)
36
+
37
+
*[Zappa](https://github.com/Miserlou/Zappa) is a serverless framework
38
+
for deploying Python web applications. It's a really slick project
39
+
and used even by internal AWS developers for their own application
40
+
deployments. Be sure to [read the Zappa blog](https://blog.zappa.io/)
41
+
as well for walkthroughs and new feature announcements.
42
+
43
+
*[First Steps with AWS Lambda, Zappa, Flask and Python 3](https://andrich.blog/2017/02/12/first-steps-with-aws-lambda-zappa-flask-and-python/)
44
+
shows how to use Zappa to deploy applications built with
45
+
Flask and Python 3.
46
+
47
+
*[Deploying a serverless flask app to AWS lambda using Zappa](https://asciinema.org/a/98560)
48
+
provides a screen capture of one developer deploying their
49
+
application to Lambda.
50
+
33
51
*[Building Scikit-Learn For AWS Lambda](https://serverlesscode.com/post/scikitlearn-with-amazon-linux-container/)
34
52
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)
Copy file name to clipboardExpand all lines: content/pages/08-web-app-deployment/38-google-cloud-functions.markdown
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,3 +15,5 @@ does not work with Python.
15
15
16
16
[Amazon Web Services (AWS) Lambda](/aws-lambda.html) is currently a good
17
17
alternative until Google Cloud Functions supports Python.
18
+
19
+
<divclass="well see-also">The Google Cloud Functions service is an implementation of the <ahref="/serverless.html">serverless</a> concept. Learn how these pieces fit together in the <ahref="/deployment.html">deployment</a> chapter or view the <ahref="/table-of-contents.html">table of contents</a> for all topics.</div>
0 commit comments