{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "%matplotlib inline" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n# DEPRECATED - Reading project labels\n\nThis tutorial introduces a deprecated script to read labels from you Encord project. You are encouraged to\nuse the tools introduced in the Working with the LabelRowV2 section instead.\n\n## Imports and authentication\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from dataclasses import dataclass\nfrom functools import partial\nfrom pathlib import Path\nfrom typing import Callable, Generator, List, Optional\n\nfrom encord import EncordUserClient\nfrom encord.orm.project import Project as OrmProject\nfrom encord.project import Project\nfrom encord.project_ontology.object_type import ObjectShape" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
To interact with Encord, you need to authenticate a client. You can find more details\n `here