Skip to main content

How to deploy python script on AWS

In this tutorial we are going to learn how to deploy python script on AWS lambda service and store the resultant values in S3 Services

  • AWS Lambda lets you run code without provisioning or managing servers. You pay only for the compute time you consume - there is no charge when your code is not running.
  • With Lambda, you can run code for virtually any type of application or backend service - all with zero administration.
  •  Just upload your code and Lambda takes care of everything required to run and scale your code with high availability. 
  • You can set up your code to automatically trigger from other AWS services or call it directly from any web or mobile app.


Comments

Popular posts from this blog

Webscrapping using Python for Machine learning,Data Science

In this tutorial we are going to learn and discuss about how to perform web scrapping  using python Web scrapping:                  Web Scraping    is a technique employed to extract large amounts of data from websites whereby the data is extracted and saved to a local file in your computer or to aws s3 services in json format For web scrapping we will use the following libraries they are  Beautiful soup urllib Json for file storing you will find the complete source code here https://github.com/GanapathiAmbore/Webscrapping-using-python