File tree 1 file changed +12
-12
lines changed
FLASK PROJECTS/Excel to Firebase
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 11
11
from firebase import Firebase
12
12
import os
13
13
14
- firebaseConfig = {
15
- "apiKey" : "your apikey " ,
16
- "authDomain" : "" ,
17
- "databaseURL" : "database url" ,
18
- "projectId" : "your project id" ,
19
- "storageBucket" : "your storage bucket id" ,
20
- "messagingSenderId" : "your sender id" ,
21
- "appId" : "your appId" ,
22
- "measurementId" : "your measurement id"
23
- };
24
- firebase = Firebase (firebaseConfig )
14
+ firebase_config = {
15
+ "apiKey" : "your apiKey " ,
16
+ "authDomain" : "" ,
17
+ "databaseURL" : "database url" ,
18
+ "projectId" : "your project id" ,
19
+ "storageBucket" : "your storage bucket id" ,
20
+ "messagingSenderId" : "your sender id" ,
21
+ "appId" : "your appId" ,
22
+ "measurementId" : "your measurement id"
23
+ }
24
+ firebase = Firebase (firebase_config )
25
25
db = firebase .database ()
26
- list_of_keys = []
26
+
27
27
28
28
app = Flask (__name__ )
29
29
You can’t perform that action at this time.
0 commit comments