from atomscale import Client client = Client(api_key="YOUR_API_KEY") result = client.get_project(project_id="d290f1ee-6c54-4b01-90e6-d701748f0851") for sample in result.samples: print(sample.physical_sample_name)
[ { "id": "a1b2c3d4-5678-90ab-cdef-1234567890ab", "name": "GaAs-001" }, { "id": "b2c3d4e5-6789-01bc-defg-2345678901bc", "name": "GaAs-002" } ]
List all physical samples associated with a project