From 025068fb792b3bc951074f163a9c21bc7b686b90 Mon Sep 17 00:00:00 2001 From: Abhishek Veeramalla Date: Wed, 8 Nov 2023 19:26:12 +0530 Subject: [PATCH 1/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 884680f0..0216ba62 100644 --- a/README.md +++ b/README.md @@ -57,8 +57,7 @@ - Example: Automating a log file analysis with a loop to find errors. ## Day 10: Working with Lists (Part 2) -- List comprehensions. -- Nested lists and advanced list operations. +- Advanced list operations. - Practice exercises and examples: - Example: Print list of files in the list of folders provided From cbd15a3ff5ce39ab6c4239f8b7efdba2a67a08a6 Mon Sep 17 00:00:00 2001 From: Pavan58kumar <61537364+Pavan58kumar@users.noreply.github.com> Date: Wed, 22 Nov 2023 06:21:16 +0000 Subject: [PATCH 2/3] Test File --- Day-12/test.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Day-12/test.py diff --git a/Day-12/test.py b/Day-12/test.py new file mode 100644 index 00000000..92c5c178 --- /dev/null +++ b/Day-12/test.py @@ -0,0 +1,13 @@ +def Update_Server_ConfigFile(file_path, key, value): + with open(file_path, "r") as file: + lines = file.readlines() + + with open(file_path,"w") as file: + for line in lines: + if key in line: + file.write(key + "=" + value + "\n") + else: + file.write(line) + +Update_Server_ConfigFile("server.conf","MAX_CONNECTIONS", "1000") + From 2c55431c9e19147f5c78bdada3fe85a0109deb5c Mon Sep 17 00:00:00 2001 From: Abhishek Veeramalla Date: Thu, 23 Nov 2023 16:12:54 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23ecf82a..d46119c8 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ - AWS automation with Boto3. - Managing EC2 instances, S3 buckets, and more. - Practice exercises and examples: - - Example: Creating a aws script for deploying applications to remote servers. + - Example: Creating a python script using boto3 to implement serverless functions. ## Day 14: Working with RESTful APIs - Introduction to RESTful APIs.