Python Firebase Real Time Database Example | CRUD Tutorial

preview_player
Показать описание
Join Complete Firebase Course

Python Firebase Real Time Database - in this Python video iam going to talk about Python Firebase Real Time Database.

So first of all Firebase is platform which allow to build web and mobile applications without server side programming language. You can store users data on its real-time database which sync data among users data in no time.

Firebase is a google product which offers so many useful features. Like
1: Firebase Real Time Database   2: Push Notifications   3: Firebase Authentication
4: Firebase Cloud Messaging  5: Firebase Test Lab For Android  6: Firebase Crash Reporting
7: Firebase Notification  8: Firebase App Indexing and many more

Check Python Firebase Course For Beginners

Get the source code:
Рекомендации по теме
Комментарии
Автор

Firebase for Python? That's awesome, good job, wish to see more on that..

GiuseppeSerraonline
Автор

Just wanna heads up! if u get error smtg abt the json token, note that now you need to authenticate! so

In firebase, go to setting >project settings> service accounts> Firebase admin SDK
you will be able to generate your token! then paste the code you see given to help with authentification into whatever other code you have.
Remember to save the token in a folder and paste the path into the code!!

This vid needs a Lil updating but good for the functions! :) Thanks!!

keegamun
Автор

If you get an error:

Traceback (most recent call last):
File "stats.py", line 1, in <module>
from firebase import firebase
File "/opt/anaconda3/envs/WAP/lib/python3.7/site-packages/firebase/__init__.py", line 3
from .async import process_pool
^
SyntaxError: invalid syntax


The working python-firebase is not on pypi, so to get the latest version, run this instead:

jacquelinelam
Автор

your video is best in youtube thanks a lots

techschool
Автор

Thank you, so much.
Very very helpful tutorial...
Nicely explained..

dishabhatti
Автор

Thanks, Parwiz, this sure makes it simple.

russelljazzbeck
Автор

sir i want to update multiple key values simultaneously
data = {
'Name': 'Saim Ali',
'msg' : 'shelf'
}
firebase = firebase.put('/-/-/-/', data)

getting error : TypeError: put() missing 1 required positional argument: 'data'
plz help me

SaimAli-xszb
Автор

how do i solve this?

File "/opt/anaconda3/lib/python3.9/site-packages/firebase/__init__.py", line 3
from .async import process_pool
^
SyntaxError: invalid syntax

[Done] exited with code=1 in 0.096 seconds

sofianghazali
Автор

nice tutorial ..very precisely explained ...thanx ...
do make a vedio on low memory python widget..

jack
Автор

Thank you very much for this helpful and easy to understand tutorial....appreciated.

sameerk
Автор

Great video!
Would you have an example with a foreign key?

EliasPaiFilho
Автор

This is a amazing tuto, thanks bro 👍🏻

Codenza
Автор

Thanks for the video... I was really stuck between python and firebase.... can you please make video on how to retrieve data on database using some conditions... like retrieve data where id="..." . It is really helpful

srashtigangil
Автор

If the data that I read changes with time and I want to read the data automatically after the change, what is the code in Python

abuhamza
Автор

Thank you bro

It is very helpfull and very effective Knowledge

deepsantani
Автор

Bro can you tell me what would be project structure?? Would it be pythons => templates, static etc or firebases' public/src??
And even if we do the project in python can we host it on firebase??

Thank you.

akshaypendyala
Автор

Hey there I'm working with kivy connected to firebase. I have connected a firebase value with a kivy label and all I need is whenever I update the firebase value my label also must update without any click event .but Im not importing firebase whereas i use json and that url of the firebase database. pls help me

dhakshnamoorthy
Автор

File "firebaseInsert.py", line 1, in <module>
from firebase import firebase
File "C:\ProgramData\Anaconda3\lib\site-packages\firebase\__init__.py", line 14, in <module>
import python_jwt as jwt
ModuleNotFoundError: No module named 'python_jwt'
getting this unique error.

vineetpandey
Автор

showing error:
Traceback (most recent call last):
File "E:\firbase.py", line 1, in <module>
from firebase import firebase
File "C:\Users\Intel\AppData\Local\Programs\Python\Python37-32\lib\site-packages\firebase\__init__.py", line 14, in <module>
import python_jwt as jwt
ModuleNotFoundError: No module named 'python_jwt'

dx
Автор

Hello, I get a problem with get function of firebase

it requires a connection.. any ideas?

peukertje