Metadata-Version: 2.1
Name: softwrdwrangler
Version: 0.0.5
Summary: A package to wrangle software data in the cloud.
Home-page: https://github.com/softwrdai/softwrdwrangler
Author: Md Robiuddin
Author-email: mrrobi040@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: boto3
Requires-Dist: pandas

# softwrdwrangler
It will wrangle various aws resources

## Installation
```bash
pip install softwrdwrangler
```

## Usage
```python
import softwrdwrangler as swr

data = swr.s3.read_pickle(<s3_uri>)

swr.s3.write_pickle(data, <s3_uri>)

d = {'a': 1, 'b': 2}
swr.s3.write_json(d, 's3://bucket/key.json')
print(swr.s3.read_json('s3://bucket/key.json'))

```

## License
Apache Software License
```
