Metadata-Version: 2.4
Name: cottoncandy
Version: 0.4.0
Summary: sugar for S3
Author-email: "Anwar O. Nunez-Elizalde" <anwarnunez@gmail.com>
License: BSD-2-Clause
Project-URL: Homepage, http://gallantlab.github.io/cottoncandy/
Project-URL: Repository, https://github.com/gallantlab/cottoncandy
Project-URL: Documentation, http://gallantlab.github.io/cottoncandy/
Project-URL: Bug Tracker, https://github.com/gallantlab/cottoncandy/issues
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: six>=1.11.0
Requires-Dist: botocore
Requires-Dist: boto3<1.36
Requires-Dist: python-dateutil>=2.7.3
Requires-Dist: PyDrive>=1.3.1
Requires-Dist: numpy>=1.6.0
Requires-Dist: cloudpickle>=0.2.2
Requires-Dist: toolz>=0.7.4
Requires-Dist: numcodecs>=0.5.5
Requires-Dist: urllib3>=1.26
Provides-Extra: extra
Requires-Dist: scipy>=0.9.0; extra == "extra"
Requires-Dist: dask[array]; extra == "extra"
Dynamic: license-file

<p align="center">
<img src="https://user-images.githubusercontent.com/17423004/43179059-9f1ca3b0-8f85-11e8-8f75-587062e75339.png"
     alt="cottoncandy logo"
     width=50%
/>
</p>  

# Welcome to cottoncandy!
[![Build Status](https://github.com/gallantlab/cottoncandy/actions/workflows/run_tests.yml/badge.svg)](https://github.com/gallantlab/cottoncandy/actions/workflows/run_tests.yml)
[![DOI](http://joss.theoj.org/papers/10.21105/joss.00890/status.svg)](https://doi.org/10.21105/joss.00890)
[![License](https://img.shields.io/badge/license-BSD%202--Clause-blue)](https://opensource.org/licenses/BSD-2-Clause)
[![Downloads](https://pepy.tech/badge/cottoncandy)](https://pepy.tech/project/cottoncandy)

*sugar for s3*

https://gallantlab.github.io/cottoncandy


## What is cottoncandy?
A python scientific library for storing and accessing numpy array data on S3. This is achieved by reading arrays from memory and downloading arrays directly into memory. This means that you don't have to download your array to disk, and then load it from disk into your python session.

This library relies heavily on [boto3](https://github.com/boto/boto3)

### Try it out!

Jupyter Notebook examples using cottoncandy to

* Explore the Allen Brain Observatory data: [**view notebook**](https://nbviewer.jupyter.org/github/gallantlab/cottoncandy/blob/main/cottoncandy/examples/ccexample_allenbrainobservatory.ipynb) ([launch](https://colab.research.google.com/github/gallantlab/cottoncandy/blob/main/cottoncandy/examples/ccexample_allenbrainobservatory.ipynb) using google colab)

* Explore OpenNeuro nifti data: [**view notebook**](https://nbviewer.jupyter.org/github/gallantlab/cottoncandy/blob/main/cottoncandy/examples/ccexample_openneuro.ipynb) ([launch](https://colab.research.google.com/github/gallantlab/cottoncandy/blob/main/cottoncandy/examples/ccexample_openneuro.ipynb)
using google colab)

## Installation

Install the latest stable release via pip:

```
$ pip install cottoncandy
```

Or the development version from GitHub:

```
$ pip install git+https://github.com/gallantlab/cottoncandy.git
```

### Configuration file

Upon first use, cottoncandy will create a configuration file. This configuration file allows you to enter your S3 and Google Drive credentials and set many other options. See the default [configuration file](https://github.com/gallantlab/cottoncandy/blob/main/cottoncandy/defaults.cfg).

The configuration file is created the first time you import cottoncandy and it is stored under:
* Linux: `~/.config/cottoncandy/options.cfg` 
* MAC OS: `~/Library/Application Support/cottoncandy/options.cfg`
* Windows (not supported): `C:\Users\<username>\AppData\Local\<AppAuthor>\cottoncandy\options.cfg`

By default, cottoncandy sets object and bucket permissions to ``authenticated-read``. If you wish to keep all your objects private, modify your configuration file and set ``default_acl = private``. See [AWS ACL overview](http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html) for more information on S3 permissions.

Advanced (for admins): One can customize the cottoncandy system install by cloning the repo and modifying `defaults.cfg`. For example, one can set the default encryption key across the system for all users (`key = SoMeEncypTionKey`). When a user first uses cottoncandy, this default value will be copied to their personal configuration file. Note however that the user can still overwrite that value.


## Getting started
Setup the connection (endpoint, access and secret keys can be specified in the configuration file instead):

```python
>>> import cottoncandy as cc
>>> cci = cc.get_interface('my_bucket',
                           ACCESS_KEY='FAKEACCESSKEYTEXT',
                           SECRET_KEY='FAKESECRETKEYTEXT',
                           endpoint_url='https://s3.amazonaws.com')
```

### Storing numpy arrays

```python
>>> import numpy as np
>>> arr = np.random.randn(100)
>>> s3_response = cci.upload_raw_array('myarray', arr)
>>> arr_down = cci.download_raw_array('myarray')
>>> assert np.allclose(arr, arr_down)
```

### Storing dask arrays

```python
>>> arr = np.random.randn(100,600,1000)
>>> s3_response = cci.upload_dask_array('test_dim', arr, axis=-1)
>>> dask_object = cci.download_dask_array('test_dim')
>>> dask_object
dask.array<array, shape=(100, 600, 1000), dtype=float64, chunksize=(100, 600, 100)>
>>> dask_slice = dask_object[..., :200]
>>> dask_slice
dask.array<getitem..., shape=(100, 600, 1000), dtype=float64, chunksize=(100, 600, 100)>
>>> downloaded_data = np.asarray(dask_slice) # this downloads the array
>>> downloaded_data.shape
(100, 600, 200)
```

### Command-line search

```python
>>> cci.glob('/path/to/*/file01*.grp/image_data')
['/path/to/my/file01a.grp/image_data',
 '/path/to/my/file01b.grp/image_data',
 '/path/to/your/file01a.grp/image_data',
 '/path/to/your/file01b.grp/image_data']
>>> cci.glob('/path/to/my/file02*.grp/*')
['/path/to/my/file02a.grp/image_data',
 '/path/to/my/file02a.grp/text_data',
 '/path/to/my/file02b.grp/image_data',
 '/path/to/my/file02b.grp/text_data']
```

### File system-like object browsing

```python
>>> import cottoncandy as cc
>>> browser = cc.get_browser('my_bucket_name',
                             ACCESS_KEY='FAKEACCESSKEYTEXT',
                             SECRET_KEY='FAKESECRETKEYTEXT',
                             endpoint_url='https://s3.amazonaws.com')
>>> browser.sweet_project.sub<TAB>
browser.sweet_project.sub01_awesome_analysis_DOT_grp
browser.sweet_project.sub02_awesome_analysis_DOT_grp
>>> browser.sweet_project.sub01_awesome_analysis_DOT_grp
<cottoncandy-group <bucket:my_bucket_name> (sub01_awesome_analysis.grp: 3 keys)>
>>> browser.sweet_project.sub01_awesome_analysis_DOT_grp.result_model01
<cottoncandy-dataset <bucket:my_bucket_name [1.00MB:shape=(10000)]>
```

### Connection settings (S3 only)

`cottoncandy` allows users to modify connection settings via `botocore`. For example, the user can define the connection time out for downloads, and the number of times to retry dropped S3 requests.

```python
from botocore.client import Config
config = Config(connect_timeout=60, read_timeout=60, retries=dict(max_attempts=10))
cci = cc.get_interface('my_bucket_name', config=config)
```

### Google Drive backend

`cottoncandy` can also use Google Drive as a back-end. This requires a `client_secrets.json` file in your `~/.config/cottoncandy` folder and the [pydrive](https://github.com/googledrive/PyDrive) package. 

See the [Google Drive setup instructions](https://github.com/gallantlab/cottoncandy/blob/main/google_drive_setup_instructions.md) for more details.

```python
>>> import cottoncandy as cc
>>> cci = cc.get_interface(backend='gdrive')
```

### Contributing
* If you find any issues with `cottoncandy`, please report it by submitting an issue on GitHub.
* If you wish to contribute, please submit a pull request. Include information as to how you ran the tests and the full output log if possible. Running tests on AWS can incur costs. 

## Cite as

Nunez-Elizalde AO, Gao JS, Zhang T, Gallant JL (2018). cottoncandy: scientific python package for easy cloud storage. Journal of Open Source Software, 3(28), 890, https://doi.org/10.21105/joss.00890




