Metadata-Version: 2.4
Name: openfeature-provider-ofrep
Version: 0.3.0
Summary: OpenFeature provider for the OpenFeature Remote Evaluation Protocol (OFREP)
Keywords: 
Author: OpenFeature
Author-email: OpenFeature <openfeature-core@groups.io>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Dist: openfeature-sdk>=0.8.2
Requires-Dist: requests>=2.27.0
Requires-Python: >=3.10
Project-URL: Homepage, https://github.com/open-feature/python-sdk-contrib
Description-Content-Type: text/markdown

# OFREP Provider for OpenFeature

This provider is designed to use the [OpenFeature Remote Evaluation Protocol (OFREP)](https://openfeature.dev/specification/appendix-c).

## Installation

```
pip install openfeature-provider-ofrep
```

## Configuration and Usage

Instantiate a new OFREPProvider instance and configure the OpenFeature SDK to use it:

```python
from openfeature import api
from openfeature.contrib.provider.ofrep import OFREPProvider

api.set_provider(OFREPProvider())
```

### Configuration options

<!-- TODO: add configuration options -->

## License

Apache 2.0 - See [LICENSE](./LICENSE) for more information.
