Python Firebase
About Lesson

In this Python Firebase lesson we are going to learn about Python Firebase Real Time Database, The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. When you build cross-platform apps or web applications , all of your clients share one Realtime Database instance and automatically receive updates with the newest data.

 

Note: before this make sure that you have enabled firebase real time database in your firebase console.

 

In here we are going to create firebase real time database, and after that we are going to save the data, to save data with a unique, auto-generated, timestamp-based key, use the push() method.

 

 

To create your own keys use the set() method. The key in the example below is “OwnKey”.

 

 

To update data for an existing entry use the update() method.

 

 

Queries return a PyreResponse object. Calling val() on these objects returns the query data. Calling key() returns the key for the query data.

 

 

Each Returns a list of objects on each of which you can call val() and key().

 

 

For deleting data for an existing entry use the remove() method.

 

 

 

This is the complete code for Python Firebase Real Time Database