Metadata-Version: 2.1
Name: remote_config_fetcher
Version: 0.1.0
Summary: A package to fetch Firebase RemoteConfig values
Home-page: https://github.com/colo-o
Author: Steven Anaya
Author-email: stvanayar@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Firebase RemoteConfig

An small python package to retrieve Firebase Remote Config Values.

## Install

```bash
pip install remote_config_fetcher
```

## Usage

```python
from firebase_remote_config import FirebaseRemoteConfig

# Init the remote config credentials path
config = FirebaseRemoteConfig('ruta/a/tu/archivo/serviceAccountKey.json')

# get remote config values
values = config.get_remote_config_values()
print(values)
```


