Skip to content

Commit

Permalink
firebase initialization
Browse files Browse the repository at this point in the history
improved structure and removed commented-out imports
  • Loading branch information
blondon1 committed May 22, 2024
1 parent 39c9397 commit 55986c1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions FLASK PROJECTS/Excel to Firebase/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
from firebase import Firebase
import os

firebaseConfig = {
"apiKey": "your apikey",
"authDomain": "",
"databaseURL": "database url",
"projectId": "your project id",
"storageBucket": "your storage bucket id",
"messagingSenderId": "your sender id",
"appId": "your appId",
"measurementId": "your measurement id"
};
firebase = Firebase(firebaseConfig)
firebase_config = {
"apiKey": "your apiKey",
"authDomain": "",
"databaseURL": "database url",
"projectId": "your project id",
"storageBucket": "your storage bucket id",
"messagingSenderId": "your sender id",
"appId": "your appId",
"measurementId": "your measurement id"
}
firebase = Firebase(firebase_config)
db = firebase.database()
list_of_keys=[]


app = Flask(__name__)

Expand Down

0 comments on commit 55986c1

Please sign in to comment.