├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_NOTES ├── demo ├── README.md ├── __init__.py ├── app │ ├── __init__.py │ ├── app.yaml │ ├── dataviewer.py │ ├── fibo.py │ ├── guestbook.py │ ├── hello.py │ └── main.py ├── shell.py └── task_list.py ├── get_app_engine_sdk.sh ├── get_gcd_zip.sh ├── ndb ├── __init__.py ├── autobatcher.py ├── blobstore.py ├── blobstore_test.py ├── context.py ├── context_test.py ├── django_middleware.py ├── eventloop.py ├── eventloop_test.py ├── google_imports.py ├── google_test_imports.py ├── key.py ├── key_test.py ├── local_cloud_datastore_factory.py ├── memcache_client.py ├── metadata.py ├── metadata_test.py ├── model.py ├── model_test.py ├── msgprop.py ├── msgprop_test.py ├── polymodel.py ├── polymodel_test.py ├── query.py ├── query_test.py ├── rpc_test.py ├── stats.py ├── stats_test.py ├── tasklets.py ├── tasklets_test.py ├── test_utils.py └── utils.py ├── requirements.txt ├── samples ├── columbus.py ├── custom.py └── msgprop.py ├── setup.py ├── tests ├── bench.py ├── dbench.py ├── gettaskletrace.py ├── keybench.py ├── kobench.py ├── mttest.py ├── putbench.py ├── race.py └── stress.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/RELEASE_NOTES -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/__init__.py -------------------------------------------------------------------------------- /demo/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/__init__.py -------------------------------------------------------------------------------- /demo/app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/app.yaml -------------------------------------------------------------------------------- /demo/app/dataviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/dataviewer.py -------------------------------------------------------------------------------- /demo/app/fibo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/fibo.py -------------------------------------------------------------------------------- /demo/app/guestbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/guestbook.py -------------------------------------------------------------------------------- /demo/app/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/hello.py -------------------------------------------------------------------------------- /demo/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/app/main.py -------------------------------------------------------------------------------- /demo/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/shell.py -------------------------------------------------------------------------------- /demo/task_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/demo/task_list.py -------------------------------------------------------------------------------- /get_app_engine_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/get_app_engine_sdk.sh -------------------------------------------------------------------------------- /get_gcd_zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/get_gcd_zip.sh -------------------------------------------------------------------------------- /ndb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/__init__.py -------------------------------------------------------------------------------- /ndb/autobatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/autobatcher.py -------------------------------------------------------------------------------- /ndb/blobstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/blobstore.py -------------------------------------------------------------------------------- /ndb/blobstore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/blobstore_test.py -------------------------------------------------------------------------------- /ndb/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/context.py -------------------------------------------------------------------------------- /ndb/context_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/context_test.py -------------------------------------------------------------------------------- /ndb/django_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/django_middleware.py -------------------------------------------------------------------------------- /ndb/eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/eventloop.py -------------------------------------------------------------------------------- /ndb/eventloop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/eventloop_test.py -------------------------------------------------------------------------------- /ndb/google_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/google_imports.py -------------------------------------------------------------------------------- /ndb/google_test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/google_test_imports.py -------------------------------------------------------------------------------- /ndb/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/key.py -------------------------------------------------------------------------------- /ndb/key_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/key_test.py -------------------------------------------------------------------------------- /ndb/local_cloud_datastore_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/local_cloud_datastore_factory.py -------------------------------------------------------------------------------- /ndb/memcache_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/memcache_client.py -------------------------------------------------------------------------------- /ndb/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/metadata.py -------------------------------------------------------------------------------- /ndb/metadata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/metadata_test.py -------------------------------------------------------------------------------- /ndb/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/model.py -------------------------------------------------------------------------------- /ndb/model_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/model_test.py -------------------------------------------------------------------------------- /ndb/msgprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/msgprop.py -------------------------------------------------------------------------------- /ndb/msgprop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/msgprop_test.py -------------------------------------------------------------------------------- /ndb/polymodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/polymodel.py -------------------------------------------------------------------------------- /ndb/polymodel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/polymodel_test.py -------------------------------------------------------------------------------- /ndb/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/query.py -------------------------------------------------------------------------------- /ndb/query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/query_test.py -------------------------------------------------------------------------------- /ndb/rpc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/rpc_test.py -------------------------------------------------------------------------------- /ndb/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/stats.py -------------------------------------------------------------------------------- /ndb/stats_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/stats_test.py -------------------------------------------------------------------------------- /ndb/tasklets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/tasklets.py -------------------------------------------------------------------------------- /ndb/tasklets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/tasklets_test.py -------------------------------------------------------------------------------- /ndb/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/test_utils.py -------------------------------------------------------------------------------- /ndb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/ndb/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/columbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/samples/columbus.py -------------------------------------------------------------------------------- /samples/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/samples/custom.py -------------------------------------------------------------------------------- /samples/msgprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/samples/msgprop.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/bench.py -------------------------------------------------------------------------------- /tests/dbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/dbench.py -------------------------------------------------------------------------------- /tests/gettaskletrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/gettaskletrace.py -------------------------------------------------------------------------------- /tests/keybench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/keybench.py -------------------------------------------------------------------------------- /tests/kobench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/kobench.py -------------------------------------------------------------------------------- /tests/mttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/mttest.py -------------------------------------------------------------------------------- /tests/putbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/putbench.py -------------------------------------------------------------------------------- /tests/race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/race.py -------------------------------------------------------------------------------- /tests/stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tests/stress.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/datastore-ndb-python/HEAD/tox.ini --------------------------------------------------------------------------------