This topic was automatically generated from Slack. You can find the original thread here.
Hi , How do I configure firebase within a python code snippet inorder to create a document in firestore . Like in case of nodejs I was using this code const { projectId, clientEmail, privateKey } = this.firebase_admin_sdk.$auth const formattedPrivateKey = privateKey.replace(/\n/g, ‘\n’) if (!admin.apps.length) {
admin.initializeApp({
credential: admin.credential.cert({
projectId,
clientEmail,
privateKey: formattedPrivateKey,
})
})
} const db = admin.firestore();
Hello I think the document above is already stating how you can get the authentication information of your connected Pipedream x Firebase account. Would you mind read through it? It will save you a lot of time