Python Firebase
About Lesson

In this Python Firebase lesson we are going to learn about Python Firebase SDK Cloud Firestore, according to Firebase Documentation, Cloud Firestore 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. 

 

 

Make sure that you have already created an account in Firebase Console, after that you need to enable Firebase Cloud Firestore in your project. after that for integration of Firebase SDK you need to install the SDK for the language of your choice. because we are using python, so we do the process for python programming language. 

 

 

To authenticate a service account and authorize it to access Firebase services, you must generate a private key file in JSON format.

  1. In the Firebase console, open Settings > Service Accounts.
  2. Click Generate New Private Key, then confirm by clicking Generate Key.
  3. Securely store the JSON file containing the key.

 

 

 

This is the complete code for this lesson.

 

 

 

In here we have created our credentials and we have added our json key file, also we need to initialize our credentials.

 

 

 

Now we need to create our firestore in here.

 

 

 

Adding Data in Cloud Firststore

Cloud Firestore stores data in Documents, which are stored in Collections. Cloud Firestore creates collections and documents implicitly the first time you add data to the document. you do not need to explicitly create collections or documents. Create a new collection and a document using the following example code.

 

 

 

Now we are going to add another data to the document.

 

 

 

Reading Data From Cloud Firestore

To quickly verify that you’ve added data to Cloud Firestore, use the data viewer in the Firebase console. You can also use the “get” method to retrieve the entire collection.