Metadata-Version: 2.4
Name: pfc-client
Version: 0.1.0
Summary: Python SDK for Prime Form Calculus governance API
Author: Dan Evans
License: Proprietary
Project-URL: Homepage, https://pfc-api.fly.dev
Project-URL: Source, https://github.com/danlevans1/PFC
Keywords: pfc,governance,ai,sdk,api
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28

# PFC Python Client

Example usage:

```python
from pfc_client import PFCClient, guarded_tool

client = PFCClient(
    api_url="https://pfc-api.fly.dev",
    api_key="YOUR_API_KEY",
)


@guarded_tool(client)
def deploy():
    print("Deploying to production")


deploy()
```
