Metadata-Version: 2.1
Name: metafold
Version: 0.1.0
Summary: Metafold SDK for Python
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: attrs>=23.2
Requires-Dist: requests>=2.31
Requires-Dist: sphinx>=7.2
Requires-Dist: sphinx_rtd_theme>=2.0
Provides-Extra: test
Requires-Dist: pytest>=7.3; extra == "test"
Requires-Dist: requests-toolbelt>=1.0; extra == "test"

# Metafold SDK for Python

## Installation

```
pip install metafold
```

## Usage

```
from metafold import MetafoldClient

access_token = "..."
project_id = "123"

metafold = MetafoldClient(access_token, project_id)

assets = metafold.assets.list()
print(assets[0].name)

asset = metafold.assets.get("123")
print(asset.name)
```

Read the [documentation][] for more info or play around with one of the
[examples](examples).

[documentation]: https://Metafold3d.github.io/metafold-python/
