Metadata-Version: 2.1
Name: datareuse
Version: 0.0.1
Summary: Reuse computed datasets
Author: Alexis Arnaudon
Author-email: alexis.arnaudon@epfl.ch
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: test
License-File: LICENSE

# PyReuse
Tool to reuse saved computations with various file formats.


It can be used as follows:

```
    with Reuse("data.csv", index=False, index_col=1) as reuse:
        df = reuse(computation, *args, **kwargs)
```

At the moment, the following file formats are available:
- csv (pandas)
