We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb6e7ab commit 2169b0aCopy full SHA for 2169b0a
count.py
@@ -2,6 +2,7 @@
2
from datetime import timedelta, date
3
from dateutil import parser
4
5
+
6
with open('data.json', 'r') as read_file:
7
data = json.load(read_file)
8
count_users.py
@@ -0,0 +1,8 @@
1
+from login import login
+from firebase_admin import auth
+login()
+users = list(auth.list_users().iterate_all())
+print('Users: ' + str(len(users)))
0 commit comments