Metadata-Version: 2.4
Name: robocorp-storage
Version: 1.1.0
Summary: Robocorp Asset Storage library
License: Apache-2.0
Author: Sema4.ai
Author-email: dev@sema4.ai
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: requests (>=2.28.2)
Requires-Dist: tenacity (>=8.0.1)
Project-URL: Repository, https://github.com/robocorp/robocorp/
Description-Content-Type: text/markdown

# robocorp-storage

`robocorp-storage` is a library which provides read and write access to the [Asset Storage](https://robocorp.com/docs/control-room/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/robocorp/blob/master/storage/docs/guides/00-asset-types.md)

## API Reference

Explore our [API](https://github.com/robocorp/robocorp/blob/master/storage/docs/api/README.md) for extensive documentation.

## Changelog

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

