Metadata-Version: 2.1
Name: furlpay
Version: 0.1.0
Summary: Official Furlpay server-side SDK for Python — stablecoin payments, wallets, cards, investing & webhooks
Author-email: Furlpay <hello@furlpay.com>
License: MIT
Project-URL: Homepage, https://furlpay.com
Project-URL: Documentation, https://github.com/furlpay/furlpay-openapi
Project-URL: Repository, https://github.com/furlpay/furlpay-python
Project-URL: Issues, https://github.com/furlpay/furlpay-python/issues
Keywords: furlpay,payments,stablecoin,usdc,solana,wallets,cards,fintech,webhooks
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Furlpay Python SDK

```bash
pip install furlpay
```

```python
import os
from furlpay import Furlpay, construct_event

client = Furlpay(api_key=os.environ["FURLPAY_API_KEY"])

# Place a fractional order
order = client.investing_create_order(symbol="AAPL", side="buy", notional=25)

# Verify an incoming webhook (e.g. in a Flask route)
event = construct_event(
    request.data,
    request.headers.get("furlpay-signature"),
    os.environ["FURLPAY_ENDPOINT_SECRET"],
)
```

Uses only the Python standard library — no runtime dependencies.
