Metadata-Version: 2.3
Name: secflow-sdk
Version: 0.1.0
Summary: SecFlow Python SDK for application runtime secret access
License: MIT
Requires-Python: >=3.12
Project-URL: Homepage, https://github.com/yeon3724/secflow#readme
Project-URL: Repository, https://github.com/yeon3724/secflow
Project-URL: Issues, https://github.com/yeon3724/secflow/issues
Description-Content-Type: text/markdown

# secflow-sdk

Python SDK for SecFlow Runtime/Data API secret access.

Runtime Resolve is the only API path that returns plaintext secret values. Use this SDK from application runtime code with an account-bound SDK token only.

Do not use Admin API session tokens with this SDK. Do not print, log, trace, persist, or package plaintext secret values.

```python
from secflow_sdk import SecFlowClient

client = SecFlowClient.from_env()
value = client.resolve_text("secret://dev/example-service/token/app-config")
```

