metafold

Metafold SDK for Python


Keywords
metafold, api, sdk, implicit, geometry, sdk-python
License
Other
Install
pip install metafold==0.2.0

Documentation

Metafold SDK for Python

PyPi

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.