Metadata-Version: 2.1
Name: casfs
Version: 0.1.2
Summary: Content-Addressable filesystem over Pyfilesystem2.
Home-page: https://github.com/google/casfs
Author: Sam Ritchie
Author-email: samritchie@google.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.5.3
Description-Content-Type: text/markdown
Requires-Dist: fs
Requires-Dist: fs-gcsfs

# CASFS

[![Build status](https://github.com/google/casfs/workflows/build/badge.svg?branch=master)](https://github.com/google/casfs/actions?query=workflow%3Abuild+branch%3Amaster)
[![Codecov branch](https://img.shields.io/codecov/c/github/google/casfs/master.svg?maxAge=3600)](https://codecov.io/github/google/casfs)
[![readthedocs](https://img.shields.io/readthedocs/casfs?maxAge=3600)](https://casfs.readthedocs.io/en/latest/?badge=latest)
[![Latest version](https://img.shields.io/pypi/v/casfs?maxAge=3600)](https://pypi.org/project/casfs)

CASFS is a content-addressable filestore library, built on
[pyfilesystem2](https://github.com/PyFilesystem/pyfilesystem2). CASFS was
inspired by [hashfs](https://github.com/dgilland/hashfs).

## Installation and Usage

Install CASFS via [pip](https://pypi.org/project/casfs/):

```bash
pip install casfs
```

Full documentation for CASFS lives at [Read The
Docs](https://casfs.readthedocs.io/en/latest).

## Disclaimer

This is a research project, not an official Google product. Expect bugs and
sharp edges. Please help by trying out CASFS, [reporting
bugs](https://github.com/google/casfs/issues), and letting us know what you
think!

## Citing CASFS

If Caliban helps you in your research, pleae consider citing the repository:

```
@software{casfs2020github,
  author = {Sam Ritchie},
  title = {{CASFS}: Content-addressable filesystem abstraction for Python.},
  url = {http://github.com/google/casfs},
  version = {0.1.0},
  year = {2020},
}
```

In the above bibtex entry, names are in alphabetical order, the version number
is intended to be that of the latest tag on github, and the year corresponds to
the project's open-source release.

## License

Copyright 2020 Google LLC.

Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).


