Metadata-Version: 2.4
Name: exnify
Version: 1.0.0
Summary: Official Python client for the Exnify currency API
License: MIT
Keywords: exnify,currency,exchange-rates,api
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: urllib3>=2.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"

# Exnify Python SDK

Official Python client for the [Exnify](https://exnify.com) currency exchange API.

```bash
pip install -e .
```

```python
from exnify import Exnify

client = Exnify("YOUR_API_KEY")
print(client.latest())
```
