-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfirestore_main.py
64 lines (50 loc) · 1.74 KB
/
firestore_main.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from typing import Collection
import firebase_admin
from firebase_admin import credentials
from firebase_admin import firestore
import csv
# https://faun.pub/getting-started-with-firebase-cloud-firestore-using-python-c6ab3f5ecae0
# https://firebase.google.com/docs/admin/setup?authuser=0#python
# Use the application default credentials
cred = credentials.Certificate('secret.json')
firebase_admin.initialize_app(cred)
db = firestore.client()
def add_rssi(dict_rssi,location,collection_name):
dict_rssi['location']=location
db.collection(collection_name).add(dict_rssi)
def get_header(snapshots):
results=[]
for snapshot in snapshots:
keys=snapshot.to_dict().keys()
for key in keys:
if key not in results:
results.append(key)
return results
def gen_snapshots_list(header,snapshots):
out=[]
for snapshot in snapshots:
dic=snapshot.to_dict()
for h in header:
if h not in dic:
dic[h]=''
out.append(dic)
return out
def genCSV(header,snapshots_list,collection_name):
csv_file='Datasets/'+collection_name+'.csv'
with open(csv_file, 'w', newline='') as csvfile:
writer = csv.DictWriter(csvfile, fieldnames=header)
writer.writeheader()
for data in snapshots_list:
writer.writerow(data)
def get_RSSIs(collection_name):
snapshots = list(db.collection(collection_name).get())
header=get_header(snapshots)
snapshots_list=gen_snapshots_list(header,snapshots)
genCSV(header,snapshots_list,collection_name)
if __name__=='__main__':
collections=db.collections()
l=[]
for col in collections:
l.append(col.id)
for collection in l:
get_RSSIs(collection)