Skip to content

Releases: encord-team/encord-client-python

0.1.175

09 Sep 13:42
4f4e173

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.174...0.1.175

0.1.174

01 Sep 11:29
0f0de06

Choose a tag to compare

What's Changed

Full Changelog: 0.1.173...0.1.174

0.1.173

07 Aug 12:43
0333e93

Choose a tag to compare

What's Changed

  • feat: Add cuboid support by @arthur-encord in #958

    Example:

        label_rows = project.list_label_rows_v2(data_hashes=[data_hash])
        label_row = label_rows[0]
        label_row.initialise_labels()
    
        ontology = label_row.ontology_structure
        cuboid_obj = ontology.get_child_by_title("Cuboid", type_=Object)
        cuboid_instance = cuboid_obj.create_instance()
        cuboid_instance.set_for_frames(
            coordinates=CuboidCoordinates(position=(0.5, 0.5, 0.5), size=(1, 1, 1), orientation=(0, 0, 0))
        )
       label_row.save()

Full Changelog: 0.1.172...0.1.173

0.1.172

06 Aug 14:00
f9065b6

Choose a tag to compare

0.1.171

15 Jul 12:22
8598b8a

Choose a tag to compare

What's Changed

  • Feat: Add last actioned by in label row v2 response

0.1.170

26 Jun 17:00
b6fd22a

Choose a tag to compare

What's Changed

Full Changelog: 0.1.169...0.1.170

0.1.169

24 Jun 09:08
3c95e26

Choose a tag to compare

What's Changed

client = EncordUserClient.create_with_ssh_private_key()
folder = client.get_storage_folder("folder-uuid")  
# Added: `create_data_group` method to create a group of mutliple data items
group_uuid = folder.create_data_group([UUID("file1"), UUID("file2")])  

project = client.get_project("project-hash")
# Added: `include_children` parameter to include children of data groups when listing label rows
rows = project.list_label_rows_v2(include_children=True)

See https://docs.encord.com/platform-documentation/Index/data-groups/index-data-groups for more information.

Full Changelog: 0.1.168...0.1.169

0.1.168

16 Jun 16:52
6b764f3

Choose a tag to compare

What's Changed

Full Changelog: 0.1.167...0.1.168

0.1.167

11 Jun 06:32
940f6b1

Choose a tag to compare

What's Changed

  • feat: Create project default to workflow project instead of manual QA
  • feat: Add assigned user in label row response
  • fix: Handle naive Datetime timezones consistently with Platform

0.1.166

04 Jun 17:07
6574512

Choose a tag to compare

What's Changed

  • fix: SDK presigned urls endpoint with proper directories by @adam-encord in #923

Full Changelog: 0.1.165...0.1.166