Denial_Gradio_App / database.py
JoelWester's picture
Upload folder using huggingface_hub
d2dba9e
raw
history blame contribute delete
660 Bytes
import pyrebase
config = firebaseConfig = {
"apiKey": "AIzaSyAOy26WIz_YvelDmlEIOky5ImBSUwNXxu8",
"authDomain": "storingdatafromgptstudy.firebaseapp.com",
"projectId": "storingdatafromgptstudy",
"storageBucket": "storingdatafromgptstudy.appspot.com",
"messagingSenderId": "267922097884",
"appId": "1:267922097884:web:f7614197e650902643d619",
"measurementId": "G-MR6Z914FYY",
"databaseURL": "https://storingdatafromgptstudy-default-rtdb.europe-west1.firebasedatabase.app/"
}
firebase = pyrebase.initialize_app(config)
database = firebase.database
data = {"Age": 21, "Name": "Emily", "Likes Pizza": True}
#Create data
database.push(data)