Skip to content

Instantly share code, notes, and snippets.

@RayyanNafees
Created July 15, 2021 10:24
Show Gist options
  • Save RayyanNafees/3dbaf7fb082503ef5137c8e9295f6458 to your computer and use it in GitHub Desktop.
Save RayyanNafees/3dbaf7fb082503ef5137c8e9295f6458 to your computer and use it in GitHub Desktop.
import firebase_admin
default_app = '[DEFAULT APP]'
db = firebase_admin.firestore.client(app=default_app)
users = db.collection('user')
get_token = lambda id: users.document(id).get('deviceToken')
__all__ = ['get_token']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment