Metadata-Version: 2.1
Name: satsure_cloud_utils
Version: 0.0.16
Summary: A package to navigate SatSure Cloud infrastructure
Home-page: https://docs-satsure-cloud-utils.netlify.app/
Author: Rehan
Author-email: rehan@satsure.co
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

## satsure_cloud_utils

The **satsure_cloud_utils** is a python package that contains all the functionality to browse and navigate aws infrastrucure used in SatSure.

### Documentation

[satsure_cloud_utils Docs](https://docs-satsure-cloud-utils.netlify.app/)

###  Install

```
$ pip install satsure_cloud_utils  
```

### Usage

```
>> from satsure_cloud_utils import GetS3Handler
>> s3_handler = GetS3Handler( 
                        access_key_id = "*****",
                        secret_access_key="*****"
                        )
>> output = s3_handler.list_buckets()
>> print(output)
```


