Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 849 Bytes

File metadata and controls

44 lines (28 loc) · 849 Bytes

Metafold SDK for Python

PyPi

Important

Until the package is at major version one (1.x.x) the API should be considered unstable.

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.

Development

This project uses uv to manage dependencies.

Run tests

uv run pytest ./tests