Metadata-Version: 2.1
Name: robocorp-storage
Version: 0.4.0
Summary: Robocorp Asset Storage library
Home-page: https://github.com/robocorp/robo/
License: Apache-2.0
Author: Cosmin P.
Author-email: cosmin@robocorp.com
Requires-Python: >=3.7.2,<4.0.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.28.2,<3.0.0)
Requires-Dist: tenacity (>=8.0.1,<9.0.0)
Requires-Dist: typing-extensions (>=4.6.3,<5.0.0) ; python_version < "3.8"
Project-URL: Repository, https://github.com/robocorp/robo/
Description-Content-Type: text/markdown

# robocorp-storage

`robocorp-storage` is a library which provides read and write access to the
*Asset Storage* in Robocorp Control Room.

## Getting started

```python
from robocorp import storage

def store_email():
    storage.set_text("cosmin", "cosmin@robocorp.com")
    print("E-mail:", storage.get_text("cosmin"))
    storage.delete_asset("cosmin")
```

## Guides

- [Handling different asset types](https://github.com/robocorp/robo/blob/master/storage/docs/guides/00-asset-types.md)

Further user guides and tutorials can be found in [Robocorp Docs](https://robocorp.com/docs).

## API Reference

Information on specific functions or classes: [robocorp.storage](https://github.com/robocorp/robo/blob/master/storage/docs/api/robocorp.storage.md)

## Changelog

A list of releases and corresponding changes can be found in the [changelog](https://github.com/robocorp/robo/blob/master/storage/docs/CHANGELOG.md).

