Metadata-Version: 2.1
Name: anystore
Version: 0.0.1
Summary: Store and cache things anywhere
Home-page: https://github.com/investigativedata/anystore
License: GPL-3.0
Author: Simon Wörpel
Author-email: simon.woerpel@pm.me
Requires-Python: >=3.11,<4
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: adlfs (>=2024.1.0,<2025.0.0)
Requires-Dist: banal (>=1.0.6,<2.0.0)
Requires-Dist: cloudpickle (>=3.0.0,<4.0.0)
Requires-Dist: fakeredis (>=2.20.1,<3.0.0)
Requires-Dist: fsspec (>=2023.12.2,<2024.0.0)
Requires-Dist: gcsfs (>=2023.12.2.post1,<2024.0.0)
Requires-Dist: orjson (>=3.9.12,<4.0.0)
Requires-Dist: pyaml (>=23.12.0,<24.0.0)
Requires-Dist: pydantic (>=2.6.0,<3.0.0)
Requires-Dist: pydantic-settings (>=2.1.0,<3.0.0)
Requires-Dist: redis (>=5.0.1,<6.0.0)
Requires-Dist: s3fs (>=2023.12.2,<2024.0.0)
Requires-Dist: sqlalchemy (>=2.0.25,<3.0.0)
Requires-Dist: typer (>=0.9.0,<0.10.0)
Project-URL: Bug Tracker, https://github.com/investigativedata/anystore/issues
Project-URL: Documentation, https://github.com/investigativedata/anystore
Project-URL: Repository, https://github.com/investigativedata/anystore
Description-Content-Type: text/markdown

[![anystore on pypi](https://img.shields.io/pypi/v/anystore)](https://pypi.org/project/anystore/)
[![Python test and package](https://github.com/investigativedata/anystore/actions/workflows/python.yml/badge.svg)](https://github.com/investigativedata/anystore/actions/workflows/python.yml)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![Coverage Status](https://coveralls.io/repos/github/investigativedata/anystore/badge.svg?branch=main)](https://coveralls.io/github/investigativedata/anystore?branch=main)
[![GPL-3.0 License](https://img.shields.io/pypi/l/anystore)](./LICENSE)

# anystore

Store anything anywhere. A wrapper around wrappers to avoid boilerplate code (because we are lazy).

`anystore` helps you to transfer data from and to a various range of sources (local filesystem, http, s3, redis, sql, ...) with a unified interface. It's main use case is to store data pipeline outcomes in a distributed cache, so that different programs or coworkers can access intermediate results.

## Install

    pip install anystore

## Usage

```python
from anystore import Store

store = Store()

assert store.get("foo/bar.txt", raise_on_nonexist=False) is None

store.set("foo/bar.txt", "Hello world")
assert store.get("foo/bar.txt") == "Hello world"
```

It comes with a handy decorator:


```python
from anystore import anycache

# use decorator
@anycache(storage="s3://mybucket/cache")
def download_file(url):
    # a very time consuming task
    return result

# 1. time: slow
res = download_file("https://example.com/foo.txt")

# 2. time: fast, as now cached
res = download_file("https://example.com/foo.txt")
```


## development

This package is using [poetry](https://python-poetry.org/) for packaging and dependencies management, so first [install it](https://python-poetry.org/docs/#installation).

Clone this repository to a local destination.

Within the root directory, run

    poetry install --with dev

This installs a few development dependencies, including [pre-commit](https://pre-commit.com/) which needs to be registered:

    poetry run pre-commit install

Before creating a commit, this checks for correct code formatting (isort, black) and some other useful stuff (see: `.pre-commit-config.yaml`)

### test

    make test

