Google Cloud Firestore API client library
Project description
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:
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.6
Deprecated Python Versions
Python == 2.7.
The last version of this library compatible with Python 2.7 is google-cloud-firestore==1.9.0.
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
Read the Client Library Documentation for Google Cloud Firestore API to see other available methods on the client.
Read the Product Documentation to learn more about the product and see How-to Guides.
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
Built Distribution
Hashes for google-cloud-firestore-2.3.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f8e513cae105ba17c4d3949091bd816cbf6075c6ac91b1f7acb4d40359f8a5a |
|
MD5 | ba41e26228bc23716a6d3e157c3f1e19 |
|
BLAKE2b-256 | f3957ecdc6c93b73c0d2f628e3ee77af12c875c3ef5171f9480471d36a18a5e8 |
Hashes for google_cloud_firestore-2.3.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb25263e6c76cedd25fca8e137c9bc07a0760d5d14ec985a2becc84ef8bc67ca |
|
MD5 | 9d9468e2100be6121e3a9a359cc0b6c0 |
|
BLAKE2b-256 | f841cb5beb4e5bebe63325fc4e76dba86559deda59723022f7b525d7c06c9762 |