Skip to main content

Google Cloud Firestore API client library

Project description

beta pypi versions

The Google Cloud Firestore API is a flexible, scalable database for mobile, web, and server development from Firebase and Google Cloud Platform. Like Firebase Realtime Database, it keeps your data in sync across client apps through realtime listeners and offers offline support for mobile and web so you can build responsive apps that work regardless of network latency or Internet connectivity. Cloud Firestore also offers seamless integration with other Firebase and Google Cloud Platform products, including Cloud Functions.

Quick Start

In order to use this library, you first need to go through the following steps:

  1. Select or create a Cloud Platform project.

  2. Enable billing for your project.

  3. Enable the Google Cloud Firestore API.

  4. Setup Authentication.

Installation

Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.

With virtualenv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Mac/Linux

pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-firestore

Windows

pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-firestore

Example Usage

from google.cloud import firestore

# Add a new document
db = firestore.Client()
doc_ref = db.collection(u'users').document(u'alovelace')
doc_ref.set({
    u'first': u'Ada',
    u'last': u'Lovelace',
    u'born': 1815
})

# Then query for documents
users_ref = db.collection(u'users')

for doc in users_ref.stream():
    print(u'{} => {}'.format(doc.id, doc.to_dict()))

Next Steps

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google-cloud-firestore-1.6.0.tar.gz (437.5 kB view details)

Uploaded Source

Built Distribution

google_cloud_firestore-1.6.0-py2.py3-none-any.whl (333.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file google-cloud-firestore-1.6.0.tar.gz.

File metadata

  • Download URL: google-cloud-firestore-1.6.0.tar.gz
  • Upload date:
  • Size: 437.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.6.0

File hashes

Hashes for google-cloud-firestore-1.6.0.tar.gz
Algorithm Hash digest
SHA256 7fec7b523ab5e1f87721ca61181114818579bb4d17de768a3993811c9d2aacfe
MD5 ecae708dfc8dc1b24c66cdabbfb92b86
BLAKE2b-256 6c311d1bce43559f31733aa5f80098b8dfdbe266538e8d07e9fab37eca2d5c19

See more details on using hashes here.

Provenance

File details

Details for the file google_cloud_firestore-1.6.0-py2.py3-none-any.whl.

File metadata

  • Download URL: google_cloud_firestore-1.6.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 333.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.6.0

File hashes

Hashes for google_cloud_firestore-1.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5b8e0bd84d98b7ec42abc75b5241a00114777b59ccdfa0df247ac12b16831823
MD5 89f6082eb31ba01054767471f904ca49
BLAKE2b-256 0c07ecc2c4794e9980d6ae8f89693e5353ce62703a8fff423028a0935b3e26d7

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page