Skip to main content

Firebase Remote Config Admin SDK

Project description

Firebase Remote Config Admin SDK for Python

A Python SDK for managing Firebase Remote Config via REST API. This package provides a convenient way to interact with Firebase Remote Config programmatically.

Features

  • Get and update Remote Config templates
  • Validate Remote Config changes before deployment
  • List and rollback to previous versions
  • Full support for all Remote Config features including parameters, conditions, and version management
  • Type-safe with Pydantic models

Installation

pip install firebase-admin-rconfig

Requirements

  • Python 3.9 or higher
  • Firebase project with Remote Config enabled
  • Service account credentials with Firebase Remote Config Admin permissions

Usage

Getting Started

First, initialize the client with your Firebase credentials:

from google.oauth2 import service_account
from firebase_remote_config import RemoteConfigClient

# Initialize the client
credentials = service_account.Credentials.from_service_account_file('path/to/service-account.json')
client = RemoteConfigClient(credentials, 'your-project-id')

# Get current Remote Config template
config = client.get_remote_config()

# Upload template to Firebase Remote Config
updated_config = client.update_remote_config(config)

Use Cases

1. Creating and Updating Parameters

from firebase_remote_config import RemoteConfigParameter, TagColor

# Add new parameter to the remote config template
new_param = RemoteConfigParameter(
    defaultValue=RemoteConfigParameterValue(value="default_value"),
    valueType=ParameterValueType.STRING,
    description="A new parameter"
)
config.template.parameters["new_parameter"] = new_param

# find parameter in the template
param = config.find_param_by_key("new_parameter")
param.description = "My new parameter"

2. Working with Conditional Values

from firebase_remote_config import RemoteConfigCondition, TagColor

# Create condition object
condition = RemoteConfigCondition(
    name="ios_users",
    expression="device.os == 'ios'",
    tagColor=TagColor.BLUE,
)

# Insert condition to rconfig template
config.insert_condition(condition)

# Use newly created condition in a conditional value
config.set_conditional_value(
    param_key="my_parameter",
    param_value=RemoteConfigParameterValue(value="my_value"),
    param_value_type=ParameterValueType.STRING,
    condition_name="ios_users",
)

3. Building Complex Conditions with ConditionBuilder

from datetime import datetime
from firebase_remote_config.conditions import ConditionBuilder
from firebase_remote_config import RemoteConfigCondition, TagColor

# Create a complex condition
builder = ConditionBuilder()
builder.APP_VERSION().GTE("2.0.0")
builder.CONDITION().APP_USER_PROPERTY("total_purchases_usd").LTE(5)
builder.CONDITION().DEVICE_COUNTRY().IN(["US", "CA", "GB"])
cond_expr = builder.build()

# Serialize condition as string
cond_expr_str = str(cond_expr)

# Insert condition to remote config template
config.insert_condition(RemoteConfigCondition(
    name="active_premium_users",
    expression=cond_expr_str,
    tagColor=TagColor.GREEN,
))

# Set conditional values
feature_param.set_conditional_value(
    param_value=RemoteConfigParameterValue(value="true"),
    param_value_type=ParameterValueType.BOOLEAN,
    condition_name="holiday_promotion",
)

4. Version Management

from firebase_remote_config.models import ListVersionsParameters

# List recent versions
versions, _ = client.list_versions(page_size=30)

# Rollback to a previous version
from firebase_remote_config.models import RollbackRequest

rolled_back_config = client.rollback("42")

License

This project is licensed under the terms of the LICENSE file in the root of this repository.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

firebase_remote_config-0.1.3.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

firebase_remote_config-0.1.3-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

Details for the file firebase_remote_config-0.1.3.tar.gz.

File metadata

  • Download URL: firebase_remote_config-0.1.3.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for firebase_remote_config-0.1.3.tar.gz
Algorithm Hash digest
SHA256 0f99da2e9137900904ea6514cd4095d875038ec4a580482f7dbf9da0a8ae5853
MD5 3d53bd6c74f935c8e3bb7b027852876a
BLAKE2b-256 53ee7881a1509d33a92b359032c9211b8498b394dd8be3f9ab17aea429d72da7

See more details on using hashes here.

Provenance

The following attestation bundles were made for firebase_remote_config-0.1.3.tar.gz:

Publisher: publish.yml on apprevenew-com/firebase-remote-config-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file firebase_remote_config-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for firebase_remote_config-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9986e3ff54ff52225b9e3c398c27caa8ca0c9aaf8fffc3f533c599e207d6561d
MD5 e16651439aaf98f2c39cb5f58793fc70
BLAKE2b-256 f912ef65d50f5a47031f3f370a2eaff5d1d4d26d556f6b89fd2d90a22f5fbf74

See more details on using hashes here.

Provenance

The following attestation bundles were made for firebase_remote_config-0.1.3-py3-none-any.whl:

Publisher: publish.yml on apprevenew-com/firebase-remote-config-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page