Metadata-Version: 2.1
Name: pyapollox
Version: 0.1.2
License: MIT
Author-email: fatelei <fatelei@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# pyapollo
another apollo python client

## Usage

```python
from pyapollo.config import ConfigManager
apollo_host = 'http://localhost:8080'
app_id = 'SampleApp'
namespace = 'application'
config = ConfigManager(apollo_host=apollo_host, app_id=app_id, namespace=namespace)
bar = config['foo']
# if you want enable hot reload config
config.enable_hot_reload()
```

pyapollo has a file cache, you can specific `file_cache_dir` to `ConfigManager`.

