Metadata-Version: 2.1
Name: gcdu
Version: 0.0.5
Summary: Google Cloud Datastore Utilities.
Home-page: https://github.com/kieras/google-cloud-datastore-utils
Author: Kieras
Author-email: akieras@ciandt.com
License: MIT
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Dist: google-api-python-client
Requires-Dist: google-auth
Requires-Dist: google-auth-httplib2
Requires-Dist: click
Requires-Dist: tox
Requires-Dist: pytest
Requires-Dist: pytest-cov

# Google Cloud Datastore Utils

Utilities for Google Cloud Datastore.


# Installation

Simply run:

    $ pipsi install gcdu

You need to authenticate in the project using gcloud sdk:

    $ gcloud auth login
    $ gcloud config set project PROJECT_ID

Or exporting the environment variable:

    $ export GOOGLE_APPLICATION_CREDENTIALS='key.json'

More help in this link https://developers.google.com/identity/protocols/application-default-credentials

---

# Usage

To use it:

    $ gcdu --help

Export command:

    $ gcdu export -p [project] -n [namespace] -k [comma separated list of datastore kinds]

Import command:

    $ gcdu import -p [project] -n [namespace] -k [comma separated list of datastore kinds]



