Metadata-Version: 2.1
Name: simple-aws-wrapper
Version: 2.7.2
Summary: Implementazione minimale per la gestione delle risorse in cloud di AWS
Author-email: Andrea Trupia <andrea.trupia.96@gmail.com>
Project-URL: Homepage, https://github.com/AndreaTrupia/simple_aws_wrapper
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# simple_aws_wrapper

Example usage:<br>
``
from src.simple_aws_wrapper.config import AWSConfig
``

``
from src.simple_aws_wrapper.const import regions
``

``
from src.simple_aws_wrapper.services.s3 import S3
``

``
aws_config = AWSConfig()
``

``
aws_config.set_region(regions.Region(regions.EU_WEST_1))
``

``
s3 = S3()
``

``
message_content=b'Hello World!'
``

``
s3.put_object(message_content, "my-bucket", "my-object-key")
``


