Metadata-Version: 2.4
Name: llama-index-readers-firebase-realtimedb
Version: 0.5.0
Summary: llama-index readers firebase_realtimedb integration
Author-email: Your Name <you@example.com>
Maintainer: ajay
License-Expression: MIT
License-File: LICENSE
Keywords: database,firebase,realtimedb
Requires-Python: <4.0,>=3.10
Requires-Dist: firebase-admin<7,>=6.4.0
Requires-Dist: llama-index-core<0.15,>=0.13.0
Description-Content-Type: text/markdown

# Firebase Realtime Database Loader

```bash
pip install llama-index-readers-firebase-realtimedb
```

This loader retrieves documents from Firebase Realtime Database. The user specifies the Firebase Realtime Database URL and, optionally, the path to a service account key file for authentication.

## Usage

Here's an example usage of the FirebaseRealtimeDatabaseReader.

```python
from llama_index.readers.firebase_realtimedb import (
    FirebaseRealtimeDatabaseReader,
)

database_url = "<database_url>"
service_account_key_path = "<service_account_key_path>"
path = "<path>"
reader = FirebaseRealtimeDatabaseReader(database_url, service_account_key_path)
documents = reader.load_data(path)
```

This loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/run-llama/llama_index/).
