# firebase-functions-python **Repository Path**: mirrors_firebase/firebase-functions-python ## Basic Information - **Project Name**: firebase-functions-python - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-08-27 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Cloud Functions for Firebase Python SDK The [`firebase-functions`](https://pypi.org/project/firebase-functions/) package provides an SDK for defining Cloud Functions for Firebase in Python. Cloud Functions provides hosted, private, and scalable environment where you can run server code. The Firebase SDK for Cloud Functions integrates the Firebase platform by letting you write code that responds to events and invokes functionality exposed by other Firebase features. ## Learn more Learn more about the Firebase SDK for Cloud Functions in the [Firebase documentation](https://firebase.google.com/docs/functions/) or [check out our samples](https://github.com/firebase/functions-samples). Here are some resources to get help: - Start with the quickstart: - Go through the guide: - Read the full API reference: - Browse some examples: If the official documentation doesn't help, try asking through our official support channels: ## Usage ```python # functions/main.py from firebase_functions import db_fn from notify_users import api @db_fn.on_value_created(reference="/posts/{post_id}") def new_post(event): print(f"Received new post with ID: {event.params.get('post_id')}") return notifyUsers(event.data) ``` ## Contributing To contribute a change, [check out the contributing guide](.github/CONTRIBUTING.md). ## License © Google, 2025. Licensed under [Apache License](LICENSE).