Metadata-Version: 2.1
Name: tarn
Version: 0.0.5
Summary: A hashmap-based storage on local and remote disks
Home-page: https://github.com/neuro-ml/tarn
License: UNKNOWN
Download-URL: https://github.com/neuro-ml/tarn/archive/v0.0.5.tar.gz
Keywords: storage,cache,invalidation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

A hashmap-based storage on local and remote disks

# Install

The simplest way is to get it from PyPi:

```shell
pip install tarn
```

Or if you want to try the latest version from GitHub:

```shell
git clone https://github.com/neuro-ml/tarn.git
cd tarn
pip install -e .

# or let pip handle the cloning:
pip install git+https://github.com/neuro-ml/tarn.git
```

# Acknowledgements

Some parts of our automatic cache invalidation machinery were heavily inspired by
the [cloudpickle](https://github.com/cloudpipe/cloudpickle) project.


