Metadata-Version: 2.4
Name: latticegraph
Version: 1.0.0
Summary: Python SDK for the LatticeGraph materials-intelligence API (https://api.latticegraph.com)
Author: Nick Harris
License: MIT
Project-URL: Homepage, https://latticegraph.com
Project-URL: Receipts, https://github.com/latticegraph/lattice-receipts
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31
Dynamic: license-file

# latticegraph — Python SDK (1.0.0)

Typed client for the LatticeGraph API (`https://api.latticegraph.com`, OpenAPI at `/openapi.json`, 244 paths; 12 are public without a key).

```python
from latticegraph import *          # re-exports the client
# public, key-free example (the ten-minute check): the profile index page that the disagreement census is built from
import requests
r = requests.get("https://api.latticegraph.com/v1/materials/profile-index", params={"limit": 3, "offset": 0, "sitemap_only": "false"}, timeout=30)
print(r.status_code, [row["formula"] for row in r.json()])
```

Keyed endpoints require `X-API-Key` (tiers: $49 / $149 / $499 per month; see the site). Receipts for every number this SDK's
documentation quotes live at `github.com/latticegraph/lattice-receipts`. License MIT.

Packaging note (S12, 2026-09-02): the product repository's own `pyproject.toml` also calls itself `latticegraph` (1.3.1) but is
never published; this SDK is the PyPI `latticegraph`. The owner decides the name before upload.
