Metadata-Version: 2.0
Name: gcloud-aio-datastore
Version: 1.0.0
Summary: Asyncio Python Client for Google Cloud Datastore
Home-page: https://github.com/talkiq/gcloud-aio
Author: TalkIQ
Author-email: engineering@talkiq.com
License: MIT License
Description-Content-Type: UNKNOWN
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet
Requires-Dist: aiohttp (<4.0.0,>=2.0.0)
Requires-Dist: gcloud-aio-auth (<2.0.0,>=1.0.0)

Asyncio Python Client for Google Cloud Datastore
================================================

|pypi| |pythons|

Installation
------------

.. code-block:: console

    $ pip install --upgrade gcloud-aio-datastore

Usage
-----

We're still working on documentation; for now, this should help get you
started:

.. code-block:: python

    from gcloud.aio.datastore import Datastore

    datastore = Datastore('my-gcloud-project', '/path/to/creds.json')

    await datastore.insert('Kind', 'name', {'prop0': 41, 'prop1': True})
    await datastore.update('Kind', 'name', {'prop0': 42, 'prop1': True})
    await datastore.upsert('Kind', 'name', {'prop2': 'aardvark'})

.. |pypi| image:: https://img.shields.io/pypi/v/gcloud-aio-datastore.svg?style=flat-square
    :alt: Latest PyPI Version
    :target: https://pypi.org/project/gcloud-aio-datastore/

.. |pythons| image:: https://img.shields.io/pypi/pyversions/gcloud-aio-datastore.svg?style=flat-square
    :alt: Python Version Support
    :target: https://pypi.org/project/gcloud-aio-datastore/


