In this article I am sharing the full and easy process of creating a AWS lambda function using python. So follow step by step process for creating AWS lambda using python 3. ********************** process to create lambda function ***************** > fill basic information like name, runtime envoironment, permission
Month: April 2020
How to Copy files from host to Docker container?
Most common problem “Copying files from host to Docker container” that usually developers face. So here I am providing you a simple command that would be copy a file from host to docker container.To copy a file into your docker container you have to follow below 3 points. first, copy the path of localhost where your file stored. ** in my case its stored on /home/anil/Desktop/database/database.sql ** second you have to set a path into your docker container where you want to store your file. ** in my case I created a…
Python map() function
Map() function :- map() function in python used to perform operations on a given number of iterable sequence like list, set, tuple etc. map() function takes a function as an one argument and a iterable sequence as a second argument. map(func, iter) func:- This is a function on which map function passes each element of given iterator. iter:- This is a iterable sequence like lists, sets, tuples etc. map() function returns a map object. so you have to change the type of result to list or tuple as per your requirement.…
How to Transfer a Domain into Another Godaddy Account?
Step 1. Login into your godaddy account. First of all you have to login into your godaddy account from which you booked that domain (xyz.com) Step 2. Now go to your all products & services page. You have to just click on the manage button shown in above right side of screenshot. Step 3. Go to your DNS management page. Here you have to click on transfer domain link shown in red circle.
