Using the SDK
Getting started with the echo3D Python SDK.
To add the echo3D Python SDK to your Python script, include the following import:
from echo3d_api import *To initialize the SDK run:
api = Echo3DAPI(api_key=args.api_key, security_key=args.security_key)To retrieve information on the 3D models in your project use:
model_list = api.retrieve_model_info()To retrieve a list of the 3D models in your project use:
api.entriesTo retrieve a specific entry ID use:
api.retrieve(entry) Last updated