Metadata-Version: 2.1
Name: nimbella
Version: 1.0.0
Summary: A python package to interact with nimbella.com services.
Home-page: https://github.com/nimbella/nimbella-sdk-python
Author: Nimbella Corporation
Author-email: info@nimbella.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: Apache Software License
Description-Content-Type: text/markdown
Requires-Dist: google-cloud-storage (==1.28.1)
Requires-Dist: redis (==3.4.1)

# Nimbella SDK for Python

A Python package to interact with [`nimbella.com`](https://nimbella.com) services.

## Installation

```
pip install nimbella
```

## Usage

```py
import nimbella

# Redis
redis = nimbella.redis()
redis.set("key", "value")
value = redis.get("key")

# Storage
bucket = nimbella.storage()
filename = "test.txt"
blob = bucket.blob(filename)
blob.upload_from_string('Expected %s contents' % filename)
```

## Support

We're always happy to help you with any issues you encounter. You may want to [join our Slack community](https://nimbella-community.slack.com/) to engage with us for a more rapid response.

## License

Apache-2.0. See [LICENSE](LICENSE) to learn more.


