Connecting to Google Datastore via remote API

If you are on GCP and deploying app engine services with google datastore as your database, you will often need ways look in datastore apart from google console. The reason being, you may require to put multiple filters fetching data which is not possible through google console beyond certain limited way. Solution Remote API is the … Continue reading Connecting to Google Datastore via remote API

Simple time profiling using decorator in Python

If you are writing a simple Python script and want to do time profiling around all the function calls, module CPython can do great job. But you may not want all the depth and preciseness by cPython library but just time profiling around your function. What do you typically do? Writing explicit print statements in … Continue reading Simple time profiling using decorator in Python

GCP: How to export google datastore for your GCP applications?

Accidental deletion of data or hardware faults, no matter what it's always good to have disaster recovery plan for your critical applications in production. This guide takes you through existing ways I discovered for backing up datastore entities. If you are using google app engine with google datastore this guide may help you to understanding … Continue reading GCP: How to export google datastore for your GCP applications?