Metadata-Version: 2.1
Name: gc_data_storage
Version: 0.1.14
Summary: Python utility for data storage in Google Cloud Environments.
Home-page: https://github.com/AymoneKouame/gc_data_storage/
Author: Aymone Jeanne Kouame
Author-email: aymone.jk@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown


gc_data_storage lets you easily move data between your development environment (e.g. Jupyter Notebook) and your Google Cloud Workspace bucket. 
It integrates the command line tool gsutil.

 * Save data from your development environment to the bucket.

 * Read data from the bucket into your development environment, with the option to keep a copy in the persistent disk.

 * Copy data between different directories within the bucket or between two different buckets owned by the user.

 * Obtain a list of data saved in the bucket or the persistent disk.

gc_data_storage was originally written to be used within the All of Us Researcher Workbench environment but can be used in other Google Cloud Environments.

```
#pip install gc-data-storage
from gc_data_storage import gc_data_storage as gs
gs = gs()
gs.list_saved_data()
```

More information, including examples, at https://github.com/AymoneKouame/gc_data_storage.

