Best Python code snippet using localstack_python
s3_cleaner.py
Source:s3_cleaner.py
...35 if match_cfn_does_not_exist:36 print(37 f"Cfn stack : {cfn_stack_name} does not exist and delete s3 : {bucket_name}")38 # delete cfn template bucket39 delete_bucket(bucket_name)40 # delete additional buckets41 for bucket in BUCKETS.split(","):42 if bucket:43 delete_bucket(f"{bucket}-{env}")44def delete_bucket(bucket_name):45 print(f"Delete bucket : {bucket_name}")46 try:47 delete_bucket = s3.Bucket(bucket_name)48 delete_bucket.objects.delete()49 delete_bucket.delete()50 except ClientError as e:51 error_code = e.response["Error"]["Code"]52 if error_code == "NoSuchBucket":53 print(f"No such bucket : {bucket_name}")54 else:...
delete_s3_bucket.py
Source:delete_s3_bucket.py
1import argparse2import os3import boto34def delete_bucket(bucket=None):5 """6 Executes S3.Client.delete_bucket to delete a given bucket7 """8 client = boto3.client('s3')9 return client.delete_bucket(Bucket=bucket)10def parse_known_args():11 # AWS credentials should be provided as environ variables12 if 'AWS_ACCESS_KEY_ID' not in os.environ:13 print('Error. Please setup AWS_ACCESS_KEY_ID')14 exit(1)15 elif 'AWS_SECRET_ACCESS_KEY' not in os.environ:16 print('Error. Please setup AWS_SECRET_ACCESS_KEY')17 exit(1)18 parser = argparse.ArgumentParser()19 parser.add_argument(20 '--region_name', required=False,21 help='AWS Region', default='us-west-2')22 parser.add_argument(23 '--Bucket', required=True, help='S3 Bucket Name'24 )25 args, extra_params = parser.parse_known_args()26 return args, extra_params27def main():28 """29 Creates an Amazon Kinesis stream using boto3 library30 """31 args, _ = parse_known_args()32 print(33 delete_bucket(args.Bucket))34if __name__ == '__main__':...
test_delete_bucket.py
Source:test_delete_bucket.py
...6from tests.unit.conftest import BUCKET_NAME7import pytest8from botocore.exceptions import ParamValidationError9class TestDelete:10 def test_delete_bucket(self, s3_client):11 create_bucket(BUCKET_NAME)12 response = delete_bucket(BUCKET_NAME)13 assert response is True14 def test_create_bucket_invalid_name(self, s3_client):15 with pytest.raises(ParamValidationError):16 delete_bucket('')17 def test_delete_nonexisting_bucket(self, s3_client):18 response = delete_bucket(BUCKET_NAME)...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!