Skip to content

Commit f0bf8bf

Browse files
committed
fix up aws lambda page a bit more
1 parent 87ebdca commit f0bf8bf

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

content/pages/08-web-app-deployment/36-aws-lambda.markdown

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Lambda is often used as a "serverless" compute architecture, which
2121
allows developers to upload their Python code instead of spinning and
2222
configuring servers, deploying their code and scaling based on traffic.
2323

24+
<div class="well see-also">Lambda is an implementation of the <a href="/serverless.html">serverless</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
25+
2426

2527
## Python on AWS Lambda
2628
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.
3032

3133

3234
### 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+
3351
* [Building Scikit-Learn For AWS Lambda](https://serverlesscode.com/post/scikitlearn-with-amazon-linux-container/)
3452

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)
3653

3754

3855
### General AWS Lambda resources

content/pages/08-web-app-deployment/38-google-cloud-functions.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ does not work with Python.
1515

1616
[Amazon Web Services (AWS) Lambda](/aws-lambda.html) is currently a good
1717
alternative until Google Cloud Functions supports Python.
18+
19+
<div class="well see-also">The Google Cloud Functions service is an implementation of the <a href="/serverless.html">serverless</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>

0 commit comments

Comments
 (0)