This is a Python client for the Tripo API.
pip install tripo
export TRIPO_API_KEY="your_api_key"
This first example is to get the balance.
from tripo import Client
with Client() as client:
balance = client.get_balance()
print(f"Balance: {balance.balance}, Frozen: {balance.frozen}")
This example is to generate a model from text.
import time
from tripo import Client
# Initialize the client
with Client() as client:
# Create a task to generate a model from text
success_task = client.text_to_model(
prompt="A 3D model of a futuristic car",
model_version="v2.0-20240919",
texture=True,
pbr=True
)
print(f"Created task with ID: {success_task.task_id}")
# Get 3d model
print("Waiting for the model to be ready...")
while True:
data = client.try_download_model(success_task.task_id)
if data is not None:
data.save("model.glb")
break
time.sleep(1)
This is the 3D model generated by the previous example.
The next example is to generate a model from an image.
import time
from tripo import Client
# Initialize the client
with Client() as client:
# Upload a file
upload_data = client.upload_file('path/to/your/image.jpg')
print(f"Uploaded file token: {upload_data.image_token}")
# Create a task to generate a model from an image
success_task = client.image_to_model(
file_token=upload_data.image_token,
model_version='v1.4-20240625',
texture=True,
pbr=True
)
print(f"Created task with ID: {success_task.task_id}")
# Get 3d model
print("Waiting for the model to be ready...")
while True:
data = client.try_download_model(success_task.task_id)
if data is not None:
data.save("model.glb")
break
time.sleep(1)