-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConexionFirebase.py
28 lines (27 loc) · 1.17 KB
/
ConexionFirebase.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from firebase import firebase
from firebase_admin import credentials
from firebase_admin import db
import firebase_admin
def conexion(chat_id,username,texto,maestro):
">>>>>>>>>>>>>>>>>> MANERA RAPIDA PARA INGRESAR DATOS A UNA BASE DE DATOS DE FIREBASE <<<<<<<<<<<<<<<<<<<"
if not firebase_admin._apps:
base=firebase.FirebaseApplication("URL",None)
datos={"chat_id":chat_id,"Nombre":username,"mensaje":texto}
resultado=base.post(f'/Collection/{maestro}',datos)
return resultado
else:
datos={"chat_id":chat_id,"Nombre":username,"mensaje":texto}
resultado=base.post(f'/Collection/{maestro}',datos)
return resultado
def lecturaR(maestro):
">>>>>>>>>>>>>>>>>> MANERA OPTIMA PARA SOLICITAR DATOS DE UNA BASE DE DATOS DE FIREBASE <<<<<<<<<<<<<<<<<<<"
if not firebase_admin._apps:
cred=credentials.Certificate('Collection')
firebase_admin.initialize_app(cred,{'databaseURL':"URL"})
ref=db.reference(f"/Collection/{maestro}")
ref=ref.get()
return ref
else:
ref=db.reference(f"/Collection/{maestro}")
ref=ref.get()
return ref