Metadata-Version: 2.4
Name: e3d-sdk
Version: 0.1.0
Summary: Python client for the E3D blockchain intelligence API
License: MIT
Project-URL: Homepage, https://docs.e3d.ai
Project-URL: Documentation, https://docs.e3d.ai/sdk/python
Project-URL: Repository, https://github.com/spacepacket1/e3d-sdk
Keywords: blockchain,crypto,defi,on-chain,intelligence,api
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Python Examples

These examples use only the Python standard library.

## Run

From the `examples/python` directory:

```bash
python3 quick_start.py
python3 token_profile.py
python3 stories.py
python3 swap_quote_buy.py
```

## Environment variables

- `E3D_BASE_URL` - defaults to `https://e3d.ai/api`
- `E3D_API_KEY` - optional API key for authenticated endpoints
- `E3D_API_KEY_HEADER` - defaults to `x-api-key`
- `E3D_TIMEOUT_MS` - request timeout in milliseconds

## Notes

- `quick_start.py` and `stories.py` call the live E3D API.
- `swap_quote_buy.py` is a local math helper and does not make network requests.
- If you want the Python examples to mirror the full JS SDK surface more closely, the next step is to add a small generated client or `requests`-based wrapper.
